Skip to content

Commit

Permalink
chore: 주석 추가 (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzawang authored May 30, 2024
1 parent bee0d52 commit 0104eaf
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ public boolean preHandle(HttpServletRequest request, HttpServletResponse respons
String authorization = request.getHeader("Authorization");
String accessToken = jwtUtil.extractJwtToken(authorization);

log.info("bearer - {}", request.getHeader("Bearer"));
log.info("authorization - {}", authorization);
log.info("accessToken - {}", accessToken);

if (accessToken == null) {
throw new UnauthorizedException();
}
Expand Down

0 comments on commit 0104eaf

Please sign in to comment.