Skip to content

Commit

Permalink
Merge pull request #242 from 1223v/test
Browse files Browse the repository at this point in the history
Fix: 유효성 검사 로그 수정
  • Loading branch information
1223v authored Apr 4, 2024
2 parents f4dd61b + f5dc750 commit 74efc5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public Optional<String> extractAccessToken(HttpServletRequest request) {
public Optional<String> extractEmail(String accessToken) {
try {
// 토큰 유효성 검사하는 데에 사용할 알고리즘이 있는 JWT verifier builder 반환
log.info("액세스 토큰 유효성 검사");

return jwtTokenizer.verifyAccessToken(accessToken);
} catch (Exception e) {
log.error("액세스 토큰이 유효하지 않습니다.");
Expand Down

0 comments on commit 74efc5a

Please sign in to comment.