This commit is contained in:
ziming 2025-05-22 11:13:52 +08:00
parent d8279de232
commit 3b29b4ef66
2 changed files with 2 additions and 4 deletions

View File

@ -26,9 +26,7 @@ func (v *VoucherBiz) CmbOrder(ctx context.Context, request *v1.CmbRequest) (*v1.
return nil, err
}
if err = v.bbToWx(ctx, order, reply); err != nil {
log.Errorf("处理请求kg报错:%s", err.Error())
}
_ = v.bbToWx(ctx, order, reply)
return reply, nil
}

View File

@ -52,7 +52,7 @@ 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,reqBody:%s,respBody:%s", url, string(body), string(bodyBytes))
log.Errorf("请求kx,url:%s,reqBody:%s,respBody:%s,err:%v", url, string(body), string(bodyBytes), err)
return nil
}