修改错误日志权限

This commit is contained in:
wuchunlei
2024-09-09 14:50:42 +08:00
parent fa03645ac9
commit 0fd8f83b47

View File

@@ -315,11 +315,11 @@ public class AliPayServiceImpl implements AliPayService {
}
return "success";
}
log.info(">>>>>>>>>>验签失败");
log.error(">>>>>>>>>>验签失败 params = {}", params.toString());
return "fail";
} catch (Exception e) {
log.info(">>>>>>>>>>订单回调异常: 订单号 = {}, msg = {}", params.get("out_trade_no"), e.getMessage());
log.error(">>>>>>>>>>订单回调异常: 订单号 = {}, msg = {}", params.toString(), e.getMessage());
return "fail";
}
}