This commit is contained in:
ziming 2025-05-21 14:49:38 +08:00
parent 86142caad1
commit fee0786d68
1 changed files with 1 additions and 3 deletions

View File

@ -49,11 +49,9 @@ func (this *KxMixRepoImpl) Request(ctx context.Context, req *kog.Notice) error {
_, bodyBytes, err := request.POST(ctx, url, body, this.options)
if err != nil {
log.Errorf("请求kx报错,url:%s,body:%s,err:%v", url, string(body), err)
log.Errorf("请求kx,url:%s,reqBody:%s,respBody:%s", url, string(body), string(bodyBytes))
return nil
}
log.Warnf("请求kx,url:%s,reqBody:%s,respBody:%s", url, string(body), string(bodyBytes))
return nil
}