异常打印

This commit is contained in:
wangw 2025-01-07 17:04:18 +08:00
parent a91947ee51
commit 15144a0021
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ public class SqxExceptionHandler {
public Result handleException(Exception e, WebRequest webRequest) {
logErrorInfo(webRequest);
logger.error(e.getMessage(), e);
e.printStackTrace();
return Result.error();
}