docs: Update log level of CollectionNotFoundError (#819)
<!-- .github/pull_request_template.md --> ## Description Move CollectionNotFoundError logging to be at Debug level ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin.
This commit is contained in:
parent
966e337500
commit
e3121f5b1f
1 changed files with 1 additions and 1 deletions
|
|
@ -9,6 +9,6 @@ class CollectionNotFoundError(CriticalError):
|
||||||
name: str = "CollectionNotFoundError",
|
name: str = "CollectionNotFoundError",
|
||||||
status_code: int = status.HTTP_422_UNPROCESSABLE_ENTITY,
|
status_code: int = status.HTTP_422_UNPROCESSABLE_ENTITY,
|
||||||
log=True,
|
log=True,
|
||||||
log_level="ERROR",
|
log_level="DEBUG",
|
||||||
):
|
):
|
||||||
super().__init__(message, name, status_code, log, log_level)
|
super().__init__(message, name, status_code, log, log_level)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue