Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ public ApiResponse<LoginResponse> refreshAccessToken(HttpServletRequest request,
);
return ApiResponse.success(loginResponse);
} catch (JwtException e) {
log.error("유효하지 않은 Refresh Token 사용 시도: {}", refreshToken, e);
log.warn("유효하지 않은 Refresh Token 사용 시도: {}", refreshToken, e);
throw new MoingApplicationException("Refresh Token이 유효하지 않습니다.");
} catch (Exception e) {
log.error("Access Token 재발급 중 알 수 없는 오류 발생", e);
log.error("Access Token 재발급 중 알 수 없는 오류 발생 : {}", e.getMessage(), e);
throw e;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ public Community toCommunityEntity(int userNumber, int categoryNumber, String ti
.viewCount(0)
.build();
}

@Override
public String toString() {
return "CommunityCreateRequestDto(categoryName=" + categoryName + ", title=" + title + ", content=" + content + ")";
}
}
Loading