From e3121f5b1f5a397cda0609b46daf6be0f442b6c7 Mon Sep 17 00:00:00 2001 From: Igor Ilic <30923996+dexters1@users.noreply.github.com> Date: Tue, 13 May 2025 12:12:35 -0400 Subject: [PATCH] docs: Update log level of CollectionNotFoundError (#819) ## 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. --- cognee/infrastructure/databases/vector/exceptions/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/infrastructure/databases/vector/exceptions/exceptions.py b/cognee/infrastructure/databases/vector/exceptions/exceptions.py index 5ec466e35..f43d7773c 100644 --- a/cognee/infrastructure/databases/vector/exceptions/exceptions.py +++ b/cognee/infrastructure/databases/vector/exceptions/exceptions.py @@ -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)