diff options
Diffstat (limited to 'src/com/vaadin/terminal/gwt/client/ApplicationConnection.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index fb7af1404c..ce8683ce90 100644 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -1106,14 +1106,6 @@ public class ApplicationConnection { MultiStepDuration updateDuration = new MultiStepDuration(); - if (debugLogging) { - VConsole.log(" * Dumping UIDL to the console"); - VConsole.dirUIDL(json, configuration); - - updateDuration.logDuration( - " * Dumping UIDL to the console completed", 10); - } - if (json.containsKey("locales")) { VConsole.log(" * Handling locales"); // Store locale data @@ -1170,6 +1162,16 @@ public class ApplicationConnection { updateDuration.logDuration(" * Creating connectors completed", 10); + if (debugLogging) { + VConsole.log(" * Dumping state changes to the console"); + VConsole.dirUIDL(json, ApplicationConnection.this); + + updateDuration + .logDuration( + " * Dumping state changes to the console completed", + 10); + } + // Update states, do not fire events Collection<StateChangeEvent> pendingStateChangeEvents = updateConnectorState(json); |