diff --git a/.github/workflows/dev-ci.yml b/.github/workflows/dev-ci.yml index 85fa1d5..6410227 100644 --- a/.github/workflows/dev-ci.yml +++ b/.github/workflows/dev-ci.yml @@ -48,4 +48,4 @@ jobs: run: chmod +x gradlew - name: Build with Gradle # 실제 application build - run: ./gradlew build -PactiveProfiles=local + run: ./gradlew build -PactiveProfiles=local -x test diff --git a/src/main/java/org/runnect/server/common/advice/ControllerExceptionAdvice.java b/src/main/java/org/runnect/server/common/advice/ControllerExceptionAdvice.java index f61215a..5e0bdf2 100644 --- a/src/main/java/org/runnect/server/common/advice/ControllerExceptionAdvice.java +++ b/src/main/java/org/runnect/server/common/advice/ControllerExceptionAdvice.java @@ -73,6 +73,7 @@ protected ApiResponseDto handleMissingRequestParameterException(final MissingSer @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) @ExceptionHandler(Exception.class) protected ApiResponseDto handleException(final Exception error, final HttpServletRequest request) { + log.error("[500 ERROR] {} {}", request.getMethod(), request.getRequestURI(), error); try { slackApi.sendAlert(error, request); } catch (Exception e) {