From f3db074057453dc0d38726ea68e4eebf8fee9550 Mon Sep 17 00:00:00 2001 From: mofangmin Date: Tue, 20 Aug 2024 17:20:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/web/handler/sys.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/web/handler/sys.go b/modules/web/handler/sys.go index b7e4b52..21a9c8d 100644 --- a/modules/web/handler/sys.go +++ b/modules/web/handler/sys.go @@ -131,6 +131,7 @@ func Config(c *gin.Context) { resp := &values.ConfigResp{} a.Data = resp channel := call.GetChannelByID(a.Channel) + log.Debug("Config channel:%v,channel:%+v", a.Channel, channel) if channel == nil { return } @@ -139,4 +140,5 @@ func Config(c *gin.Context) { resp.FBPixelID = channel.FBPixelID // resp.FBAccessToken = channel.FBAccessToken resp.Channel = channel.ChannelID + }