From d33e15a2bb336ce8ef88c878988713347c906ec0 Mon Sep 17 00:00:00 2001 From: skiffer-git <44203734@qq.com> Date: Thu, 20 Oct 2022 15:23:12 +0800 Subject: [PATCH] log --- pkg/common/http/http_client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/common/http/http_client.go b/pkg/common/http/http_client.go index b83ad7516..a0cdfc0ff 100644 --- a/pkg/common/http/http_client.go +++ b/pkg/common/http/http_client.go @@ -7,6 +7,7 @@ package http import ( + "Open_IM/pkg/common/log" "bytes" "encoding/json" "io/ioutil" @@ -64,6 +65,7 @@ func CallBackPostReturn(url, callbackCommand string, input, output interface{}, if err != nil { return err } + log.Info("post resp content: ", string(b)) if err = json.Unmarshal(b, output); err != nil { return err }