|
|
@@ -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";
|
|
|
}
|
|
|
}
|