summaryrefslogtreecommitdiffstats
path: root/server/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/com')
-rw-r--r--server/src/com/vaadin/server/AbstractCommunicationManager.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/com/vaadin/server/AbstractCommunicationManager.java b/server/src/com/vaadin/server/AbstractCommunicationManager.java
index af9118547f..0e279d140b 100644
--- a/server/src/com/vaadin/server/AbstractCommunicationManager.java
+++ b/server/src/com/vaadin/server/AbstractCommunicationManager.java
@@ -2418,11 +2418,11 @@ public abstract class AbstractCommunicationManager implements Serializable {
reinitUI(retainedUI, request);
return retainedUI;
} else {
- getLogger()
- .info("Not using retained UI in " + windowName
+ getLogger().info(
+ "Not using retained UI in " + windowName
+ " because retained UI was of type "
- + retainedUIId.getClass() + " but "
- + uiClass + " is expected for the request.");
+ + retainedUI.getClass() + " but " + uiClass
+ + " is expected for the request.");
}
}
}