From 4a0ee278c1679f516c04997f557402b86159f184 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Tue, 17 Sep 2024 19:54:56 +1000 Subject: [PATCH] fix logging Signed-off-by: Olivier Lamy --- .../jetty/tests/distribution/DisableUrlCacheTest.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/test-distribution/test-distribution-common/src/test/java/org/eclipse/jetty/tests/distribution/DisableUrlCacheTest.java b/tests/test-distribution/test-distribution-common/src/test/java/org/eclipse/jetty/tests/distribution/DisableUrlCacheTest.java index c36c302255f..ef42a1ff81b 100644 --- a/tests/test-distribution/test-distribution-common/src/test/java/org/eclipse/jetty/tests/distribution/DisableUrlCacheTest.java +++ b/tests/test-distribution/test-distribution-common/src/test/java/org/eclipse/jetty/tests/distribution/DisableUrlCacheTest.java @@ -94,10 +94,11 @@ public class DisableUrlCacheTest extends AbstractJettyHomeTest String loggingConfig = """ org.eclipse.jetty.LEVEL=INFO org.eclipse.jetty.deploy.LEVEL=DEBUG - org.eclipse.jetty.ee10.webapp.LEVEL=DEBUG - org.eclipse.jetty.ee10.webapp.WebAppClassLoader.LEVEL=INFO - org.eclipse.jetty.ee10.servlet.LEVEL=DEBUG + org.eclipse.jetty.eexx.webapp.LEVEL=DEBUG + org.eclipse.jetty.eexx.webapp.WebAppClassLoader.LEVEL=INFO + org.eclipse.jetty.exx.servlet.LEVEL=DEBUG """; + loggingConfig = loggingConfig.replace("eexx", env); Files.writeString(loggingFile, loggingConfig, StandardCharsets.UTF_8);