From cbf544b3c19918a8d25feb5b2bc4793721540f74 Mon Sep 17 00:00:00 2001 From: yangdx Date: Sun, 13 Jul 2025 01:51:30 +0800 Subject: [PATCH] Remvoe redundant log message --- lightrag/kg/shared_storage.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lightrag/kg/shared_storage.py b/lightrag/kg/shared_storage.py index ce1068cc..3ba8378c 100644 --- a/lightrag/kg/shared_storage.py +++ b/lightrag/kg/shared_storage.py @@ -714,16 +714,6 @@ class KeyedUnifiedLock: enable_output=False, ) - # Log cleanup results if any locks were cleaned - total_cleaned = cleanup_stats["mp_cleaned"] + cleanup_stats["async_cleaned"] - if total_cleaned > 0: - direct_log( - f"Keyed lock cleanup completed: {total_cleaned} locks cleaned " - f"(MP: {cleanup_stats['mp_cleaned']}, Async: {cleanup_stats['async_cleaned']})", - level="INFO", - enable_output=False, - ) - # 3. Get current status after cleanup current_status = self.get_lock_status()