Commit 214c45a1 by 周晓航

新增响应日志, 方便生产查问题

parent d543d861
......@@ -35,10 +35,10 @@ public class CallBackController {
private OrderCallBackService orderCallBackService;
@PostMapping("/order")
@ApiAnnotation(logMessage = "/callback/order",printRequestLog = false)
@ApiAnnotation(logMessage = "/callback/order", printRequestLog = false)
public BaseResponse orderCallBackHandle(@Valid @RequestBody @LogParams OrderCallBackRequestVo requestVo) {
ApiLog.infoMessage("orderCallBackHandle start url:{} orderCode:{} requestId:{}","/callback/order",
requestVo.getOrderCode(),requestVo.getRequestId());
ApiLog.infoMessage("orderCallBackHandle start url:{} orderCode:{} requestId:{} orderstate:{}", "/callback/order",
requestVo.getOrderCode(), requestVo.getRequestId(), requestVo.getOrderState());
return orderCallBackService.orderCallBackHandle(requestVo);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment