From f5f888dbdd1b0398efa0292da06b56de03797670 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 10 Feb 2025 15:28:05 +0000 Subject: [PATCH] Polish See gh-44197 --- .../reactive/ReactiveManagementChildContextConfiguration.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/ReactiveManagementChildContextConfiguration.java b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/ReactiveManagementChildContextConfiguration.java index 3a53fd2b45..0631b84119 100644 --- a/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/ReactiveManagementChildContextConfiguration.java +++ b/spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/reactive/ReactiveManagementChildContextConfiguration.java @@ -129,14 +129,11 @@ public class ReactiveManagementChildContextConfiguration { @Override public void customize(TomcatReactiveWebServerFactory factory) { - System.out.println("Looking for access log valve in " + factory); AccessLogValve accessLogValve = findAccessLogValve(factory); if (accessLogValve == null) { - System.out.println("Did not find it"); return; } accessLogValve.setPrefix(customizePrefix(accessLogValve.getPrefix())); - System.out.println("Customized " + factory); } private AccessLogValve findAccessLogValve(TomcatReactiveWebServerFactory factory) {