From b5c3dbae91c3715ac53c14312fe5fcdacb467402 Mon Sep 17 00:00:00 2001 From: liuwei Date: Tue, 18 Feb 2025 11:23:12 +0800 Subject: [PATCH] =?UTF-8?q?debug=20=E5=8A=A0=E5=A5=BD=E5=8F=8B=E6=B5=81?= =?UTF-8?q?=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- robot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/robot.py b/robot.py index b569fa4..99063df 100644 --- a/robot.py +++ b/robot.py @@ -246,7 +246,7 @@ class Robot(Job): def onMsg(self, msg: WxMsg) -> int: try: - self.LOG.info(msg) # 打印信息 + self.LOG.debug(msg) # 打印信息 self.processMsg(msg) except Exception as e: self.LOG.error(e) @@ -261,7 +261,7 @@ class Robot(Job): while wcf.is_receiving_msg(): try: msg = wcf.get_msg() - self.LOG.info(msg) + self.LOG.debug(msg) self.processMsg(msg) except Empty: continue # Empty message