Skip to content

Commit

Permalink
[LOG] 로그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
tidavid1 committed Mar 21, 2024
1 parent 575aab5 commit 1ece939
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
String accessToken =
request.getHeader(header) != null ? URLDecoder.decode(request.getHeader(header),
StandardCharsets.UTF_8) : null;
log.info("accessToken: {}", accessToken);
if (accessToken == null || !accessToken.contains(IDENTIFICATION_TYPE)) {
request.setAttribute("exception", new JWTVerificationException("Invalid token type"));
} else {
Expand Down

0 comments on commit 1ece939

Please sign in to comment.