调整日志内容

This commit is contained in:
liuwei
2025-03-19 15:25:47 +08:00
parent ea6eecc3b0
commit 8665b418ba
2 changed files with 2 additions and 1 deletions

View File

@@ -44,6 +44,7 @@ class StatsCollectorPlugin(PluginInterface):
super().__init__()
self.logger = logging.getLogger("StatsCollector")
self.LOG.info(f"正在初始化 {self.name} 插件...")
# 默认配置
self.config = {
"enable": True,

View File

@@ -36,7 +36,7 @@ class StatsDashboardPlugin(PluginInterface):
def __init__(self):
super().__init__()
self.logger = logging.getLogger("StatsDashboard")
self.LOG.info(f"正在初始化 {self.name} 插件...")
self.server = None
self.server_thread = None