From 74783d77817682b002bed9a7bc409ebf748e6b43 Mon Sep 17 00:00:00 2001 From: yangdx Date: Tue, 12 Aug 2025 17:29:05 +0800 Subject: [PATCH] Remove redundant debug logging for Qdrant operations --- lightrag/kg/qdrant_impl.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lightrag/kg/qdrant_impl.py b/lightrag/kg/qdrant_impl.py index 96eb0c2f..2bc39d8b 100644 --- a/lightrag/kg/qdrant_impl.py +++ b/lightrag/kg/qdrant_impl.py @@ -204,7 +204,7 @@ class QdrantVectorDBStorage(BaseVectorStorage): score_threshold=self.cosine_better_than_threshold, ) - logger.debug(f"[{self.workspace}] query result: {results}") + # logger.debug(f"[{self.workspace}] query result: {results}") return [ { @@ -253,9 +253,9 @@ class QdrantVectorDBStorage(BaseVectorStorage): try: # Generate the entity ID entity_id = compute_mdhash_id_for_qdrant(entity_name, prefix="ent-") - logger.debug( - f"[{self.workspace}] Attempting to delete entity {entity_name} with ID {entity_id}" - ) + # logger.debug( + # f"[{self.workspace}] Attempting to delete entity {entity_name} with ID {entity_id}" + # ) # Delete the entity point from the collection self._client.delete(