Skip to content

Commit

Permalink
chore: 로그 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzwv committed Aug 1, 2023
1 parent 13342c3 commit 7ef033f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public TokenDto createToken(String email) {
public Authentication getAuthentication(String token) {
try{
String email = Jwts.parser().setSigningKey(SECRET_KEY).parseClaimsJws(token).getBody().getSubject();
log.info("authenticated email = {}", email);
Member member = memberRepository.findByEmail(email).orElseThrow(() -> new CustomException(ErrorCode.NO_MEMBER_EXIST));
return new UsernamePasswordAuthenticationToken(member, "");
}catch (ExpiredJwtException e) {
Expand Down

0 comments on commit 7ef033f

Please sign in to comment.