Compare commits

..

No commits in common. "2c975bb8d448d1ca8456199fc7f15659465ea5da" and "c8722cd4f2dd87503e9a2638663b142fafacadb5" have entirely different histories.

2개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -4,9 +4,6 @@
## [Unreleased]
### 수정
- actuator 경로 로그필터가 context-path 환경에서 동작하지 않는 버그 수정 (#6)
## [2026-04-07]
### 수정

파일 보기

@ -58,7 +58,7 @@ public class ApiAccessLoggingFilter extends OncePerRequestFilter {
}
private boolean shouldSkip(String uri) {
return uri.contains("/actuator")
return uri.startsWith("/actuator")
|| uri.startsWith("/css")
|| uri.startsWith("/js")
|| uri.startsWith("/images")