From bb56d15b9b22dbaa09017d150b7cdd7f81faa1f7 Mon Sep 17 00:00:00 2001 From: liuwei Date: Mon, 28 Apr 2025 14:05:02 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=96=B0=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin_common/plugin_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin_common/plugin_interface.py b/plugin_common/plugin_interface.py index 3cae6dd..06e781a 100644 --- a/plugin_common/plugin_interface.py +++ b/plugin_common/plugin_interface.py @@ -77,7 +77,7 @@ class PluginInterface(ABC): if os.path.exists(config_path): with open(config_path, "r", encoding="utf-8") as f: plugin_config = toml.load(f) - self.LOG.info(f"从 {config_path} 加载插件{self.name}配置:{plugin_config}") + self.LOG.debug(f"从 {config_path} 加载插件{self.name}配置:{plugin_config}") self._config.update(plugin_config) self.LOG.debug(f"从 {config_path} 加载插件配置成功") return True