From e9bc7273c027aa0209f709e0525994fd53cde1c2 Mon Sep 17 00:00:00 2001 From: yuseogi0218 Date: Tue, 2 Apr 2024 16:55:53 +0900 Subject: [PATCH] UPDATE submodule --- laser-ordermanage-server-submodule-config | 2 +- .../ordermanage/common/exception/GlobalExceptionHandler.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/laser-ordermanage-server-submodule-config b/laser-ordermanage-server-submodule-config index dc8ea787..54ca8c08 160000 --- a/laser-ordermanage-server-submodule-config +++ b/laser-ordermanage-server-submodule-config @@ -1 +1 @@ -Subproject commit dc8ea7872fb57ff50b19f1cea43f0e4490701d5a +Subproject commit 54ca8c0889e10b43f00fa87f8cc3859a4cded8f9 diff --git a/src/main/java/com/laser/ordermanage/common/exception/GlobalExceptionHandler.java b/src/main/java/com/laser/ordermanage/common/exception/GlobalExceptionHandler.java index 953fca20..a37b0c53 100644 --- a/src/main/java/com/laser/ordermanage/common/exception/GlobalExceptionHandler.java +++ b/src/main/java/com/laser/ordermanage/common/exception/GlobalExceptionHandler.java @@ -49,8 +49,7 @@ public class GlobalExceptionHandler { @ExceptionHandler(Exception.class) public ResponseEntity handleUnknownException(Exception e, HttpServletRequest request) { - e.printStackTrace(); -// sendSlackAlertErrorLog(e, request); // 슬랙 알림 보내는 메서드 + sendSlackAlertErrorLog(e, request); // 슬랙 알림 보내는 메서드 CustomCommonException exception = new CustomCommonException(CommonErrorCode.UNKNOWN_ERROR); return exception.toErrorResponse(); }