From 155fa98f46a27c13214e13e4b315e2dfb880f046 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Mon, 9 Dec 2024 16:14:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=80=90=E7=B3=BB=E7=BB=9F=E3=80=91?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E7=9A=84=E5=BC=82=E5=B8=B8=E6=97=A5=E5=BF=97?= =?UTF-8?q?=EF=BC=8C=E5=B0=86=E9=94=99=E8=AF=AF=E5=A0=86=E6=A0=88=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E8=BE=93=E5=87=BA=E5=88=B0=20error.log=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/io/dataease/exception/GlobalExceptionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/common/src/main/java/io/dataease/exception/GlobalExceptionHandler.java b/sdk/common/src/main/java/io/dataease/exception/GlobalExceptionHandler.java index fb8bb12604..267135617c 100644 --- a/sdk/common/src/main/java/io/dataease/exception/GlobalExceptionHandler.java +++ b/sdk/common/src/main/java/io/dataease/exception/GlobalExceptionHandler.java @@ -26,7 +26,7 @@ public class GlobalExceptionHandler { @ExceptionHandler(DEException.class) public ResultMessage deExceptionHandler(DEException e) { - LogUtil.error(e.getMessage()); + LogUtil.error(e.getMessage(), e); return new ResultMessage(e.getCode(),e.getMessage()); }