From 0310a6bd21b9d041c3c117a962e2142426764330 Mon Sep 17 00:00:00 2001 From: momo <1012651275@qq.com> Date: Mon, 16 Oct 2023 18:35:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=90=88=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/curl/client_resty.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/utils/curl/client_resty.go b/utils/curl/client_resty.go index ef1acbfa..3b0ef544 100644 --- a/utils/curl/client_resty.go +++ b/utils/curl/client_resty.go @@ -3,7 +3,6 @@ package curl import ( "bytes" "context" - "encoding/json" "fmt" "time" @@ -112,10 +111,10 @@ func (c *defaultClient) PostJson(jsonData interface{}, res interface{}) error { if resp.StatusCode() != 200 { err = fmt.Errorf("服务端失败,返回结果:%+v", resp.RawResponse.Status) logx.Errorf("客户端 请求失败 Client PostForm Server error:%+v", err) - if resp.RawResponse.StatusCode == 422 { - jsonDataB, _ := json.Marshal(jsonData) - logc.Infof(c.ctx, "服务端失败,返回状态码:%+v,请求参数:%+v", resp.RawResponse.StatusCode, string(jsonDataB)) - } + // if resp.RawResponse.StatusCode == 422 { + // jsonDataB, _ := json.Marshal(jsonData) + // logc.Infof(c.ctx, "服务端失败,返回状态码:%+v,请求参数:%+v", resp.RawResponse.StatusCode, string(jsonDataB)) + // } } return err }