From 88014d02d148cac12f386cdc4265d60907ba9c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 19 Mar 2026 16:37:52 +0800 Subject: [PATCH] 1 --- controllers/tonglian_callback.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/controllers/tonglian_callback.go b/controllers/tonglian_callback.go index 406e7c17c..2113f0266 100644 --- a/controllers/tonglian_callback.go +++ b/controllers/tonglian_callback.go @@ -22,6 +22,7 @@ type TongLianController struct { func (c *TongLianController) Msg() { if c.Ctx.Input.Method() == http.MethodPost { call, err := api.TLpayAPI.GetCallbackMsg(getUsefulRequest2(c.Ctx)) + globals.SugarLogger.Debug("-------method1:= %s", utils.Format4Output(call, false)) if err == nil { err = localjx.OnTLPayCallback(call) } @@ -34,10 +35,8 @@ func (c *TongLianController) Msg() { //通联同一扫码支付回调接口 func (c *TongLianController) OnLinePay() { - globals.SugarLogger.Debug("-------method:= %s", c.Ctx.Input.Method()) if c.Ctx.Input.Method() == http.MethodPost { call, err := api.TLpayAPI.GetCallbackOnlinePayMsg(getUsefulRequest2(c.Ctx)) - globals.SugarLogger.Debug("-------method:= %s", utils.Format4Output(call, false)) if err == nil { err = localjx.OnTLOnlinePayCallback(call) }