Skip to content

Commit

Permalink
[Update] not show health log
Browse files Browse the repository at this point in the history
  • Loading branch information
Han-Jeong committed Jun 18, 2024
1 parent d623817 commit 13b5864
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
authentication.getName(), ((HttpServletRequest) request).getRequestURI(), authentication.getAuthorities());
} else {
String uri = ((HttpServletRequest) request).getRequestURI();
if (!uri.equals("/health-check")) {
if (!uri.equals("/health-check") || !uri.equals("/health")) {
log.info("no valid JWT token found, uri: {}", uri);
}
}
Expand Down

0 comments on commit 13b5864

Please sign in to comment.