From 3e780c4417c3c062dedb78b5f8621791b500dd99 Mon Sep 17 00:00:00 2001 From: Afan <212898630@qq.com> Date: Mon, 28 Jul 2025 21:40:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=8A=E6=89=80=E6=9C=89=E7=9A=84=E6=B7=B1?= =?UTF-8?q?=E8=93=9D=E8=89=B2=E7=9A=84=E6=97=A5=E5=BF=97=E9=83=BD=E6=94=B9?= =?UTF-8?q?=E6=88=90=E6=B5=85=E8=93=9D=E8=89=B2=EF=BC=8C=EF=BC=88=E5=8F=AF?= =?UTF-8?q?=E8=83=BD=E6=98=AF=E4=B8=AA=E4=BA=BA=E5=B7=AE=E4=BA=86=EF=BC=89?= =?UTF-8?q?=E7=9C=8B=E8=B5=B7=E6=9D=A5=E6=88=96=E8=AE=B8=E4=BC=9A=E6=9B=B4?= =?UTF-8?q?=E5=8A=A0=E8=88=92=E6=9C=8D=E4=B8=80=E7=82=B9......(=E5=BA=94?= =?UTF-8?q?=E8=AF=A5=E4=BC=9A=E8=88=92=E6=9C=8D=E4=B8=80=E7=82=B9=E5=90=A7?= =?UTF-8?q?=EF=BC=8C=E6=80=BB=E4=B9=8B=E6=88=91=E6=84=9F=E8=A7=89=E7=9C=8B?= =?UTF-8?q?=E8=B5=B7=E6=9D=A5=E6=98=AF=E8=BF=99=E6=A0=B7=E7=9A=84)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/logger.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/logger.py b/src/common/logger.py index 78446decb..e27fcb4ef 100644 --- a/src/common/logger.py +++ b/src/common/logger.py @@ -334,7 +334,7 @@ MODULE_COLORS = { "llm_models": "\033[36m", # 青色 "remote": "\033[38;5;242m", # 深灰色,更不显眼 "planner": "\033[36m", - "memory": "\033[34m", + "memory": "\033[38;5;117m", # 天蓝色 "hfc": "\033[38;5;81m", # 稍微暗一些的青色,保持可读 "action_manager": "\033[38;5;208m", # 橙色,不与replyer重复 # 关系系统 @@ -352,7 +352,7 @@ MODULE_COLORS = { "expressor": "\033[38;5;166m", # 橙色 # 专注聊天模块 "replyer": "\033[38;5;166m", # 橙色 - "memory_activator": "\033[34m", # 绿色 + "memory_activator": "\033[38;5;117m", # 天蓝色 # 插件系统 "plugins": "\033[31m", # 红色 "plugin_api": "\033[33m", # 黄色 @@ -451,7 +451,7 @@ class ModuleColoredConsoleRenderer: # 日志级别颜色 self._level_colors = { "debug": "\033[38;5;208m", # 橙色 - "info": "\033[34m", # 蓝色 + "info": "\033[38;5;117m", # 天蓝色 "success": "\033[32m", # 绿色 "warning": "\033[33m", # 黄色 "error": "\033[31m", # 红色