Skip to content

Commit

Permalink
♻️ 코드 수정: 프론트엔드 배포 연동 (로그인, 로그아웃 기능 수정)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoJeHuni committed Dec 4, 2024
1 parent 8558782 commit 3ebcf70
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ protected void successfulAuthentication(HttpServletRequest request, HttpServletR

try {
saveRefreshTokenToRedis(userCode, refreshToken);
log.info("Redis 저장 완료");
log.info("Redis save complete");
} catch (Exception e) {
log.error("Redis 저장 실패: {}", e.getMessage(), e);
log.error("Redis save fail - successfulAuthentication : : {}", e.getMessage(), e);
}

log.info("인증 성공 처리 완료");
log.info("successfulAuthentication complete");
}

// Redis에 refreshToken 저장
Expand All @@ -150,7 +150,7 @@ public void saveRefreshTokenToRedis(String userCode, String refreshToken) {
TimeUnit.DAYS
);
} catch (Exception e) {
log.error("Redis 저장 실패", e);
log.error("Redis save fail - saveRefreshTokenToRedis : ", e);
}
}

Expand Down

0 comments on commit 3ebcf70

Please sign in to comment.