xiongzhu 4 rokov pred
rodič
commit
997b46c90c

+ 1 - 1
src/main/java/com/izouma/nineth/web/HmPayController.java

@@ -20,7 +20,7 @@ public class HmPayController extends BaseController {
 
     @PostMapping("/notify/{type}/{orderId}")
     public String orderNotify(@PathVariable String type, @PathVariable String orderId, HttpServletRequest req) {
-        log.info("回调参数 {}", JSON.toJSONString(req.getParameterMap(), true));
+        log.info("回调type={}, orderId={}, 参数={}", type, orderId, JSON.toJSONString(req.getParameterMap(), true));
         return "respCode=000000";
     }
 }