From 5ed580c89efa36a8a0fe816907c09d3bbba78a6a Mon Sep 17 00:00:00 2001 From: liuyang Date: Tue, 24 Dec 2024 17:47:25 +0800 Subject: [PATCH] =?UTF-8?q?feat:[REQ-3282]=20=E5=A2=9E=E5=8A=A0=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=E5=A4=84=E7=90=86=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/axzo/orgmanax/server/ExceptionControllerAdvice.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orgmanax-server/src/main/java/cn/axzo/orgmanax/server/ExceptionControllerAdvice.java b/orgmanax-server/src/main/java/cn/axzo/orgmanax/server/ExceptionControllerAdvice.java index 67f7bfc..4818018 100644 --- a/orgmanax-server/src/main/java/cn/axzo/orgmanax/server/ExceptionControllerAdvice.java +++ b/orgmanax-server/src/main/java/cn/axzo/orgmanax/server/ExceptionControllerAdvice.java @@ -37,7 +37,7 @@ public class ExceptionControllerAdvice { */ @ExceptionHandler(BusinessException.class) public ApiResult exceptionHandler(BusinessException ex) { - log.error("业务异常", ex); + log.warn("业务异常", ex); return ApiResult.error(ex.getErrorCode(), extractMessage(ex)); }