Skip to content

Commit

Permalink
Merge pull request #61 from Catch-You/fix/사건상세조회
Browse files Browse the repository at this point in the history
[CHORE] authentication 확인 로그 출력
  • Loading branch information
xloyeon authored Dec 18, 2023
2 parents 0b67c12 + f442816 commit b78a784
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ protected void doFilterInternal(
if (authentication != null && authentication.isAuthenticated()) {
log.error("Access denied for user: {} - Request URL: {} - Role : {}", authentication.getName(), request.getRequestURL(), authentication.getAuthorities());
} else {
log.error("Authentication: " + authentication);
log.error("Access denied for anonymous user - Request URL: {}", request.getRequestURL());
}
ErrorResponse access_denied =
Expand Down

0 comments on commit b78a784

Please sign in to comment.