Skip to content

Commit

Permalink
[BE] FIX: log level 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbi9n committed Jul 28, 2023
1 parent 69d17d1 commit dbc956b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ public Boolean isTokenValid(String token, Key key) {
.parseClaimsJws(token);
return true;
} catch (MalformedJwtException e) {
log.debug("잘못된 JWT 서명입니다.");
log.info("잘못된 JWT 서명입니다.");
} catch (ExpiredJwtException e) {
log.debug("만료된 JWT 토큰입니다.");
log.info("만료된 JWT 토큰입니다.");
} catch (UnsupportedJwtException e) {
log.debug("지원되지 않는 JWT 토큰입니다.");
log.info("지원되지 않는 JWT 토큰입니다.");
} catch (IllegalArgumentException e) {
log.debug("JWT 토큰이 잘못되었습니다.");
log.info("JWT 토큰이 잘못되었습니다.");
} catch (Exception e) {
log.debug("JWT 토큰 검사 중 알 수 없는 오류가 발생했습니다.");
log.info("JWT 토큰 검사 중 알 수 없는 오류가 발생했습니다.");
}
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class FtApiManager {
* 42 토큰을 발급받는다.
*/
public void issueAccessToken() {
log.debug("called issueAccessToken");
log.info("called issueAccessToken");
accessToken =
WebClient.create().post()
.uri(ftApiProperties.getTokenUri())
Expand Down Expand Up @@ -62,7 +62,7 @@ public void issueAccessToken() {
* @return JsonNode 형태의 유저 정보
*/
public JsonNode getFtUsersInfoByName(String name) {
log.debug("called getFtUsersInfoByName {}", name);
log.info("called getFtUsersInfoByName {}", name);
Integer tryCount = 0;
while (tryCount < MAX_RETRY) {
try {
Expand All @@ -76,8 +76,8 @@ public JsonNode getFtUsersInfoByName(String name) {
return results;
} catch (Exception e) {
tryCount++;
log.debug(e.getMessage());
log.debug("요청에 실패했습니다. 최대 3번 재시도합니다. 현재 시도 횟수: {}", tryCount);
log.info(e.getMessage());
log.info("요청에 실패했습니다. 최대 3번 재시도합니다. 현재 시도 횟수: {}", tryCount);
this.issueAccessToken();
if (tryCount == MAX_RETRY) {
log.error("요청에 실패했습니다. 최대 재시도 횟수를 초과했습니다. {}", e.getMessage());
Expand Down

0 comments on commit dbc956b

Please sign in to comment.