From 8790d0c58268d34c5c0edb647a08e988e750112f Mon Sep 17 00:00:00 2001 From: liuwei Date: Fri, 16 Jan 2026 13:35:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=97=A5=E5=BF=97=E7=BA=A7?= =?UTF-8?q?=E5=88=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/douyin_parser/main.py | 2 +- plugins/message_sign/main.py | 2 +- plugins/video/main.py | 2 +- plugins/xiuren_image/main.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/douyin_parser/main.py b/plugins/douyin_parser/main.py index 1044685..8dd2150 100644 --- a/plugins/douyin_parser/main.py +++ b/plugins/douyin_parser/main.py @@ -87,7 +87,7 @@ class DouyinParserPlugin(MessagePluginInterface): self.http_proxy = douyin_config.get("http_proxy", "") self.download_mode = douyin_config.get("download_mode", "card") # card或file - self.LOG.info(f"[{self.name}] 插件初始化完成,代理设置: {self.http_proxy}") + self.LOG.debug(f"[{self.name}] 插件初始化完成,代理设置: {self.http_proxy}") return True def start(self) -> bool: diff --git a/plugins/message_sign/main.py b/plugins/message_sign/main.py index f3e556c..f766443 100644 --- a/plugins/message_sign/main.py +++ b/plugins/message_sign/main.py @@ -112,7 +112,7 @@ class MessageSignPlugin(MessagePluginInterface): # 加载词汇表 self.load_vocabulary() - self.LOG.info( + self.LOG.debug( f"[{self.name}] 插件初始化完成,指令:{self._commands},补签指令:{self._makeup_commands},已加载 {len(self.vocab_list)} 个词汇") return True diff --git a/plugins/video/main.py b/plugins/video/main.py index 2ea71f6..e6d1f08 100644 --- a/plugins/video/main.py +++ b/plugins/video/main.py @@ -90,7 +90,7 @@ class VideoPlugin(MessagePluginInterface): self.LOG.error(f"创建下载目录失败: {e}") return False - self.LOG.info(f"[{self.name}] 插件初始化完成,指令:{self._commands},下载目录:{self.download_dir}") + self.LOG.debug(f"[{self.name}] 插件初始化完成,指令:{self._commands},下载目录:{self.download_dir}") return True def start(self) -> bool: diff --git a/plugins/xiuren_image/main.py b/plugins/xiuren_image/main.py index 4939bf5..116957d 100644 --- a/plugins/xiuren_image/main.py +++ b/plugins/xiuren_image/main.py @@ -96,7 +96,7 @@ class XiurenImagePlugin(MessagePluginInterface): # 初始化图片缓存管理器 self.image_cache_manager = ImageCacheManager(self.image_folder, cache_size) - self.LOG.info( + self.LOG.debug( f"[{self.name}] 插件初始化完成,指令:{self._commands},图片目录:{self.image_folder},缓存大小:{cache_size}") return True