From 4db1d2b3a328211dfffa0bf4485a440cb96ad705 Mon Sep 17 00:00:00 2001 From: Ethan Date: Tue, 25 Feb 2025 11:53:23 +0800 Subject: [PATCH] fix: comment out debug print statement in gewechat callback --- pkg/platform/sources/gewechat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/platform/sources/gewechat.py b/pkg/platform/sources/gewechat.py index 23c6d41b..e6e2d87e 100644 --- a/pkg/platform/sources/gewechat.py +++ b/pkg/platform/sources/gewechat.py @@ -216,7 +216,7 @@ class GeWeChatAdapter(adapter.MessagePlatformAdapter): @self.quart_app.route('/gewechat/callback', methods=['POST']) async def gewechat_callback(): data = await quart.request.json - print(json.dumps(data, indent=4, ensure_ascii=False)) + # print(json.dumps(data, indent=4, ensure_ascii=False)) if 'testMsg' in data: return 'ok'