From 7762cd59f3719af3fefcb7d2ce511d41748a8734 Mon Sep 17 00:00:00 2001 From: liuwei Date: Tue, 6 May 2025 09:00:04 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=97=A5=E5=BF=97=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wechat_ipad/client/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wechat_ipad/client/login.py b/wechat_ipad/client/login.py index aabcdfc..2e0e969 100644 --- a/wechat_ipad/client/login.py +++ b/wechat_ipad/client/login.py @@ -72,7 +72,7 @@ class LoginMixin(WechatAPIClientBase): async with aiohttp.ClientSession() as session: response = await session.post(f'http://{self.ip}:{self.port}/api/Login/CheckQR?uuid={uuid}') json_resp = await response.json() - logger.info("check_login_uuid:{}", json_resp) + logger.debug("check_login_uuid:{}", json_resp) if json_resp.get("Success"): if json_resp.get("Message") == "登陆成功": self.wxid = json_resp.get("Data").get("acctSectResp").get("userName")