qin 9 kuukautta sitten
vanhempi
commit
452d29b0d5

+ 2 - 0
src/main/java/com/poteviohealth/ym/ipos/controller/ReceivePayAndRefundController.java

@@ -1,5 +1,6 @@
 package com.poteviohealth.ym.ipos.controller;
 
+import com.alibaba.fastjson.JSONObject;
 import com.poteviohealth.cgp.common.facade.log.OperateType;
 import com.poteviohealth.cgp.common.facade.log.OperationLog;
 import com.poteviohealth.cgp.common.integrated.LongParams;
@@ -37,6 +38,7 @@ public class ReceivePayAndRefundController {
     @ResponseBody
     @OperationLog(type = OperateType.ADD, description = "支付回调")
     public String payNotify(@RequestBody PayNotification payNotification){
+        log.info("payNotification==="+ JSONObject.toJSONString(payNotification));
         return paymentService.payNotification(payNotification);
     }