From e791002e2e94d95c0fd5d4154feb1ddfb23c025f Mon Sep 17 00:00:00 2001 From: laodaming <11058467+laudamine@user.noreply.gitee.com> Date: Tue, 7 Nov 2023 13:14:07 +0800 Subject: [PATCH] fix --- server/feishu-sync/internal/logic/webhooklogic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/feishu-sync/internal/logic/webhooklogic.go b/server/feishu-sync/internal/logic/webhooklogic.go index 5857f3cd..1f596c5f 100644 --- a/server/feishu-sync/internal/logic/webhooklogic.go +++ b/server/feishu-sync/internal/logic/webhooklogic.go @@ -87,7 +87,7 @@ func (l *WebhookLogic) Webhook(w http.ResponseWriter, r *http.Request) { //如果只是验证http连接的消息 var webhookMsg WebhookMsg if err = json.Unmarshal(realMsgBytes, &webhookMsg); err != nil { - logx.Error("反序列化请求body失败", err) + logx.Error("反序列化请求body失败", err, "解密数据:", string(realMsgBytes)) return } //验证连接(直接返回)