From 3ca52b118d921d83e622b6373b5d2639cc9e86f5 Mon Sep 17 00:00:00 2001 From: zhayujie Date: Mon, 23 Mar 2026 21:33:53 +0800 Subject: [PATCH] fix(weixin): qrcode url log --- channel/weixin/weixin_channel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channel/weixin/weixin_channel.py b/channel/weixin/weixin_channel.py index 11c5ec27..250eaeec 100644 --- a/channel/weixin/weixin_channel.py +++ b/channel/weixin/weixin_channel.py @@ -215,7 +215,7 @@ class WeixinChannel(ChatChannel): return {} self._current_qr_url = qrcode_url - logger.info(f"[Weixin] QR code URL: {qrcode_url}") + logger.info(f"[Weixin] 微信二维码链接: {qrcode_url}") self._print_qr(qrcode_url) self._notify_cloud_qrcode(qrcode_url) print(" 等待扫码...\n") @@ -258,7 +258,7 @@ class WeixinChannel(ChatChannel): qrcode_url = qr_resp.get("qrcode_img_content", "") scanned_printed = False self._current_qr_url = qrcode_url - logger.info(f"[Weixin] New QR code ({refresh_count}/{QR_MAX_REFRESHES}): {qrcode_url}") + logger.info(f"[Weixin] 微信二维码链接 ({refresh_count}/{QR_MAX_REFRESHES}): {qrcode_url}") self._print_qr(qrcode_url) self._notify_cloud_qrcode(qrcode_url) except Exception as e: