Skip to content

Commit

Permalink
refactor: custom exception 관련 로그 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Wo-ogie committed Feb 15, 2024
1 parent ffc3176 commit 4e3567c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GlobalExceptionHandler extends ResponseEntityExceptionHandler {

@ExceptionHandler(CustomException.class)
public ResponseEntity<ErrorResponse> handleCustomException(CustomException ex) {
Logger.error(String.format(String.format("Custom Exception: %s:", ExceptionUtils.getExceptionStackTrace(ex))));
Logger.error(String.format(String.format("Custom Exception: %s", ExceptionUtils.getExceptionStackTrace(ex))));

return ResponseEntity
.status(ex.getHttpStatus())
Expand Down

0 comments on commit 4e3567c

Please sign in to comment.