From d9e6084640f53d6e9e72d82135207711442f1215 Mon Sep 17 00:00:00 2001 From: liuwei Date: Fri, 16 May 2025 10:05:34 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E6=98=AF=E4=B8=A2=E5=BC=83=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E6=B6=88=E6=81=AF=E5=90=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- robot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/robot.py b/robot.py index e0029a8..d94c5ff 100644 --- a/robot.py +++ b/robot.py @@ -228,7 +228,7 @@ class Robot(Job): if data: tasks = [] for message in data: - self.LOG.debug(f"sync_message.处理消息消息内容: {message}") + # self.LOG.debug(f"sync_message.处理消息消息内容: {message}") # 处理消息 try: wxmsg: WxMessage = WxMessage.from_json(message) @@ -397,9 +397,9 @@ class Robot(Job): # 尝试使用插件处理消息 plugin_processed = await self.process_plugin_message(message) - self.LOG.debug(f"plugin_processed: {plugin_processed}") + # self.LOG.debug(f"plugin_processed: {plugin_processed}") # 处理群聊命令或私聊命令 - self.LOG.debug(f"from_user: {from_user}-self.wxid: {self.wxid}") + # self.LOG.debug(f"from_user: {from_user}-self.wxid: {self.wxid}") if from_user == self.wxid: # 自己发送的消息 if is_group: rsp = self.gbm.handle_command(group_id, content.clean_content)