Skip to content

Commit 7bdc0d6

Browse files
committed
chore: 배포 테스트스
1 parent f95b9dc commit 7bdc0d6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

backend/src/main/java/com/timepaper/backend/global/auth/filter/JwtAuthenticationFilter.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
4343
Authentication authentication = new UsernamePasswordAuthenticationToken(
4444
userDetails, null, userDetails.getAuthorities());
4545

46+
log.info("authentication : {}", authentication.getName());
47+
4648
SecurityContextHolder.getContext().setAuthentication(authentication);
4749
}
4850

@@ -61,6 +63,8 @@ private String getAccessTokenRequest(HttpServletRequest request) {
6163
protected boolean shouldNotFilter(HttpServletRequest request) throws ServletException {
6264
String path = request.getServletPath();
6365
String method = request.getMethod();
66+
67+
log.info("path : {}", path);
6468
AntPathMatcher antPathMatcher = new AntPathMatcher();
6569

6670
if ("GET".equalsIgnoreCase(method)) {

0 commit comments

Comments
 (0)