From 4bf49ed6316cf38aa753e73d0070c587a18ca5df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Tue, 16 Jun 2015 09:01:43 +0300 Subject: [PATCH] Make Jetty use jul even though the slf4j api is on the classpath Change-Id: I7a01bb964bd1d73614a5a9fd08405b871f5382ca --- uitest/src/com/vaadin/launcher/DevelopmentServerLauncher.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uitest/src/com/vaadin/launcher/DevelopmentServerLauncher.java b/uitest/src/com/vaadin/launcher/DevelopmentServerLauncher.java index 871111ad8b..aa2c63393b 100644 --- a/uitest/src/com/vaadin/launcher/DevelopmentServerLauncher.java +++ b/uitest/src/com/vaadin/launcher/DevelopmentServerLauncher.java @@ -49,6 +49,7 @@ import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.nio.SelectChannelConnector; import org.eclipse.jetty.server.ssl.SslSocketConnector; import org.eclipse.jetty.util.Scanner; +import org.eclipse.jetty.util.log.JavaUtilLog; import org.eclipse.jetty.util.ssl.SslContextFactory; import org.eclipse.jetty.webapp.WebAppContext; @@ -74,6 +75,8 @@ public class DevelopmentServerLauncher { */ public static void main(String[] args) { System.setProperty("java.awt.headless", "true"); + System.setProperty("org.eclipse.jetty.util.log.class", + JavaUtilLog.class.getName()); assertAssertionsEnabled(); -- 2.39.5