diff options
-rw-r--r-- | uitest/src/com/vaadin/launcher/DevelopmentServerLauncher.java | 3 |
1 files changed, 3 insertions, 0 deletions
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(); |