调整日志级别

This commit is contained in:
liuwei
2026-01-16 13:29:52 +08:00
parent a987902f72
commit 79d174649b
30 changed files with 49 additions and 49 deletions

View File

@@ -69,7 +69,7 @@ class PluginManagerPlugin(MessagePluginInterface):
def initialize(self, context: Dict[str, Any]) -> bool:
"""初始化插件"""
self.LOG = logger
self.LOG.info(f"正在初始化 {self.name} 插件...")
self.LOG.debug(f"正在初始化 {self.name} 插件...")
# 保存上下文对象
self.event_system = context.get("event_system")
@@ -78,7 +78,7 @@ class PluginManagerPlugin(MessagePluginInterface):
self.command_format = self._config.get("PluginManager", {}).get("command-format", "插件 列表")
self.enable = self._config.get("PluginManager", {}).get("enable", True)
self.LOG.info(f"[{self.name}] 插件初始化完成,指令:{self._commands}")
self.LOG.debug(f"[{self.name}] 插件初始化完成,指令:{self._commands}")
return True
def can_process(self, message: Dict[str, Any]) -> bool: