]> source.dussan.org Git - vaadin-framework.git/commitdiff
remote logging method to protected -> can be enabled in e.g. addon projects like...
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 11 Mar 2011 14:57:35 +0000 (14:57 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 11 Mar 2011 14:57:35 +0000 (14:57 +0000)
svn changeset:17732/svn branch:6.6

src/com/vaadin/terminal/gwt/client/VDebugConsole.java

index 6475c9731ac95295ef8425eaf37b14f2c5996d69..fdd7860a51812e0655f9dffe41ed4da56ac37042 100755 (executable)
@@ -281,7 +281,7 @@ public final class VDebugConsole extends VOverlay implements Console {
     };
     private VLazyExecutor sendToRemoteLog = new VLazyExecutor(350, doSend);
 
-    private void remoteLog(String msg) {
+    protected void remoteLog(String msg) {
         msgQueue.add(msg);
         if (msg.length() > 4) {
             doSend.execute();