修改log信息捕捉。

This commit is contained in:
terrfly 2024-04-07 09:21:53 +08:00
parent 4d1b35fe86
commit 8fe04ed808
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public class PayOrderDivisionExecController extends ApiController {
return ApiRes.customFail(e.getMessage()); return ApiRes.customFail(e.getMessage());
} catch (Exception e) { } catch (Exception e) {
log.error("系统异常:{}", e); log.error("系统异常:payOrderId={}", bizRQ.getPayOrderId(), e);
return ApiRes.customFail("系统异常"); return ApiRes.customFail("系统异常");
} }
} }