From 665a44f940fd4aa05395cee0203bffc09ae28b6a Mon Sep 17 00:00:00 2001 From: AKW <2497744746@qq.com> Date: Tue, 26 Dec 2023 17:07:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/jqr/pubsub.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/jqr/pubsub.py b/apps/jqr/pubsub.py index dec4b39..2045deb 100644 --- a/apps/jqr/pubsub.py +++ b/apps/jqr/pubsub.py @@ -50,6 +50,7 @@ class JQREventNewUserCallbackPubSub: time.sleep(5) continue data = json.loads(data[1]) + logger.info(f'new user event callback: {data}') callback_data = json.loads(data['data']) corpinfo = data['corpinfo'] handler = data['handler'] @@ -72,6 +73,7 @@ class JQRQrcodeCallbackPubSub: time.sleep(5) continue data = json.loads(data[1]) + logger.info(f'qrcode event callback: {data}') qrcodeid = data['qrcodeid'] userid = data['userid'] externaluserid = data['externaluserid']