Skip to content

Commit

Permalink
test/#359: LoggingFilter 수정
Browse files Browse the repository at this point in the history
- Swagger 요청은 로깅 안되게  수정
  • Loading branch information
LJH098 committed Jul 10, 2024
1 parent 7a56cdd commit d7938a2
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@
@Slf4j
public class LoggingFilter extends OncePerRequestFilter {
private final List<String> excludeUrl =
List.of("/actuator/health", "/actuator/prometheus", "/v1/health");
List.of(
"/actuator/health",
"/actuator/prometheus",
"/v1/health",
"/api-docs/swagger-config",
"/api-docs");

@Override
protected void doFilterInternal(
Expand Down

0 comments on commit d7938a2

Please sign in to comment.