Compare commits

..

No commits in common. "30b83b3645ddd59ece64b9173b1e5693b41cdf57" and "3061987dae4d8aeadb7428102e98dd8092e8e183" have entirely different histories.

2 changed files with 1 additions and 13 deletions

View File

@ -65,8 +65,6 @@ func WxCallback(c *gin.Context) {
return
}
notifyReqJson, _ := json.Marshal(notifyReq)
logger.Info(c, "WxCallback-解析微信回调请求的参数到 V3NotifyReq 结构体", string(notifyReqJson))
err = paymentService.WxPayCallBack(notifyReq, wxConfig)
if err != nil {
logger.Error(c, "WxCallback-回调执行失败,失败原因:", err.Error())
@ -122,9 +120,6 @@ func AliCallback(c *gin.Context) {
c.String(http.StatusBadRequest, "%s", "fail")
return
}
notifyReqJson, _ := json.Marshal(notifyReq)
logger.Info(c, "AliCallback-解析支付宝支付异步通知的参数到BodyMap", string(notifyReqJson))
err = paymentService.ALiCallBack(notifyReq, aliConfig)
if err != nil {
logger.Error(c, "AliCallback-回调执行失败,失败原因:", err.Error())

File diff suppressed because one or more lines are too long