Skip to content

Commit

Permalink
[fix] 의미없는 로깅 알림 제거 (#87)
Browse files Browse the repository at this point in the history
* [fix] rm unnecessary log cause discord msg

* [chore] make ATK's expiration time to 1 minute
  • Loading branch information
tkdwns414 authored Aug 2, 2024
1 parent 703c581 commit 0ee299e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SERVER_YML
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ protected void doFilterInternal(
try {
filterChain.doFilter(request, response);
} catch (AuthException e) {
log.error("FilterException throw AuthException : {}", e.getErrorCode().getMessage());
// log.error("FilterException throw AuthException : {}", e.getErrorCode().getMessage());
request.setAttribute("exception", e.getErrorCode());
filterChain.doFilter(request, response);
} catch (JwtException e) {
log.error("FilterException throw JwtException Exception : {}", e.getMessage());
// log.error("FilterException throw JwtException Exception : {}", e.getMessage());
request.setAttribute("exception", AuthErrorCode.UNKNOWN_TOKEN);
filterChain.doFilter(request, response);
} catch (Exception e) {
Expand Down

0 comments on commit 0ee299e

Please sign in to comment.