Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected void successfulAuthentication(HttpServletRequest request, HttpServletR
return;
} else if (status.equals(INACTIVE.name())) {
log.warn("INACTIVE 상태인 경우 로그인이 불가능합니다");
sendErrorResponse(response, HttpStatus.FORBIDDEN, "INACTIVE 상태인 경우 로그인이 불가능합니다");
sendErrorResponse(response, HttpStatus.FORBIDDEN, "해당 아이디 로그인 시도가 10번 불일치하여 계정이 잠금되었습니다.");
return;
} else if (!status.equals(ACTIVE.name())&&!status.equals(WARNED.name())) {
log.warn("알 수 없는 유저 상태 코드 : " + status);
Expand Down
Loading