调整新用户信息

This commit is contained in:
liuwei
2025-04-28 14:05:02 +08:00
parent 2beedfa928
commit bb56d15b9b

View File

@@ -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