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:
Igor Ilic 2025-05-13 12:12:35 -04:00 committed by GitHub
parent 966e337500
commit e3121f5b1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,6 +9,6 @@ class CollectionNotFoundError(CriticalError):
name: str = "CollectionNotFoundError",
status_code: int = status.HTTP_422_UNPROCESSABLE_ENTITY,
log=True,
log_level="ERROR",
log_level="DEBUG",
):
super().__init__(message, name, status_code, log, log_level)