From: Artur Signell Date: Wed, 4 Apr 2012 20:37:48 +0000 (+0300) Subject: Increased logging to be able to see where time is spent X-Git-Tag: 7.0.0.alpha2~124 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=326be286f93599bd24d038ae01ea89b724a541eb;p=vaadin-framework.git Increased logging to be able to see where time is spent --- 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")) {