diff options
author | Artur Signell <artur@vaadin.com> | 2012-04-04 23:37:48 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-04-05 00:09:56 +0300 |
commit | 326be286f93599bd24d038ae01ea89b724a541eb (patch) | |
tree | cd16582ca76bf57b83598009fde6b3e77d1e80a0 | |
parent | 6b1d3e4be451ff21a540174886687ad3cc88c364 (diff) | |
download | vaadin-framework-326be286f93599bd24d038ae01ea89b724a541eb.tar.gz vaadin-framework-326be286f93599bd24d038ae01ea89b724a541eb.zip |
Increased logging to be able to see where time is spent
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 14e85f708e..66cf07529d 100644 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -946,6 +946,7 @@ public class ApplicationConnection { if (json.containsKey(UIDL_SECURITY_TOKEN_ID)) { uidlSecurityKey = json.getString(UIDL_SECURITY_TOKEN_ID); } + VConsole.log(" * Handling resources from server"); if (json.containsKey("resources")) { ValueMap resources = json.getValueMap("resources"); @@ -956,11 +957,13 @@ public class ApplicationConnection { resourcesMap.put(key, resources.getAsString(key)); } } + VConsole.log("Handling type inheritance map from server"); if (json.containsKey("typeInheritanceMap")) { configuration.addComponentInheritanceInfo(json .getValueMap("typeInheritanceMap")); } + VConsole.log("Handling type mappings from server"); if (json.containsKey("typeMappings")) { configuration.addComponentMappings( @@ -969,6 +972,7 @@ public class ApplicationConnection { Command c = new Command() { public void execute() { + VConsole.log(" * Dumping UIDL"); VConsole.dirUIDL(json, configuration); if (json.containsKey("locales")) { |