From e61975f0af02c022689442e4e1f473102d97cab6 Mon Sep 17 00:00:00 2001 From: Windpicker-owo <3431391539@qq.com> Date: Tue, 30 Sep 2025 09:31:17 +0800 Subject: [PATCH] =?UTF-8?q?fix(memory):=20=E5=B0=86=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E7=BA=A7=E5=88=AB=E4=BB=8Edebug=E6=9B=B4=E6=94=B9=E4=B8=BAinfo?= =?UTF-8?q?=EF=BC=8C=E4=BB=A5=E6=8F=90=E9=AB=98=E6=9E=84=E5=BB=BA=E9=97=B4?= =?UTF-8?q?=E9=9A=94=E6=8F=90=E7=A4=BA=E7=9A=84=E5=8F=AF=E8=A7=81=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/chat/memory_system/enhanced_memory_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat/memory_system/enhanced_memory_core.py b/src/chat/memory_system/enhanced_memory_core.py index c89ad3e94..30cca7b1d 100644 --- a/src/chat/memory_system/enhanced_memory_core.py +++ b/src/chat/memory_system/enhanced_memory_core.py @@ -211,7 +211,7 @@ class EnhancedMemorySystem: last_time = self._last_memory_build_times.get(build_scope_key) if last_time and (current_time - last_time) < min_interval: remaining = min_interval - (current_time - last_time) - logger.debug( + logger.info( "距离上次记忆构建间隔不足,跳过此次构建 | key=%s | 剩余%.2f秒", build_scope_key, remaining,