kx time out 10s add log

This commit is contained in:
ziming 2025-05-22 17:29:34 +08:00
parent 2f6b22db59
commit 0c7571cb7b
2 changed files with 6 additions and 4 deletions

View File

@ -75,7 +75,9 @@ func (v *VoucherBiz) useLog(ctx context.Context, order *bo.OrderBo, req *bo.Wech
}
}
return v.wxToBBUse(ctx, order, req)
_ = v.wxToBBUse(ctx, order, req)
return nil
}
func (v *VoucherBiz) used(ctx context.Context, order *bo.OrderBo) error {

View File

@ -49,12 +49,12 @@ func (this *KxMixRepoImpl) Request(ctx context.Context, req *kog.Notice) error {
if err != nil {
return err
}
//fmt.Printf("请求kx,url:%s,reqBody:%s", url, string(body))
start := time.Now()
_, bodyBytes, err := request.POST(ctx, url, body, this.options)
if err != nil {
log.Errorf("请求kx,url:%s,reqBody:%s,respBody:%s,err:%v", url, string(body), string(bodyBytes), err)
return nil
log.Errorf("请求kx发生错误,耗时:%s,url:%s,reqBody:%s,respBody:%s,err:%v", time.Now().Sub(start).String(), url, string(body), string(bodyBytes), err)
return err
}
return nil