summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-04-04 23:37:48 +0300
committerArtur Signell <artur@vaadin.com>2012-04-05 00:09:56 +0300
commit326be286f93599bd24d038ae01ea89b724a541eb (patch)
treecd16582ca76bf57b83598009fde6b3e77d1e80a0
parent6b1d3e4be451ff21a540174886687ad3cc88c364 (diff)
downloadvaadin-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.java4
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")) {