Skip to content

Commit a27fb6d

Browse files
committed
style: JwtAuthenticationProcessingFilter 로그 출력 (#4)
1 parent 92dbb29 commit a27fb6d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/project/mapdagu/jwt/filter/JwtAuthenticationProcessingFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
4545
filterChain.doFilter(request, response); // "/login" 요청이 들어오면, 다음 필터 호출
4646
return;
4747
}
48+
log.info("uri = {}, query = {}", request.getRequestURI(), request.getQueryString());
4849

4950
log.info("JwtAuthenticationProcessingFilter 호출");
5051
// 사용자 요청 헤더에서 RefreshToken 추출-> RefreshToken이 없거나 유효하지 않다면 null

0 commit comments

Comments
 (0)