From: Artur Signell Date: Tue, 13 Mar 2012 18:45:43 +0000 (+0200) Subject: Temporarily made logging go to system out aswell to ease debugging X-Git-Tag: 7.0.0.alpha2~331 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8244a1e6a067a190668dc20ddb2993172bf93057;p=vaadin-framework.git Temporarily made logging go to system out aswell to ease debugging --- diff --git a/src/com/vaadin/terminal/gwt/client/VDebugConsole.java b/src/com/vaadin/terminal/gwt/client/VDebugConsole.java index eeab3cff19..5837dd5136 100644 --- a/src/com/vaadin/terminal/gwt/client/VDebugConsole.java +++ b/src/com/vaadin/terminal/gwt/client/VDebugConsole.java @@ -329,6 +329,7 @@ public class VDebugConsole extends VOverlay implements Console { logToDebugWindow(msg, false); GWT.log(msg); consoleLog(msg); + System.out.println(msg); } private List msgQueue = new LinkedList(); @@ -419,6 +420,8 @@ public class VDebugConsole extends VOverlay implements Console { GWT.log(msg); consoleErr(msg); + System.out.println(msg); + } /*