summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ApplicationConnection.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java
index 236417f23b..0b64f56c3e 100644
--- a/client/src/com/vaadin/client/ApplicationConnection.java
+++ b/client/src/com/vaadin/client/ApplicationConnection.java
@@ -2000,12 +2000,15 @@ public class ApplicationConnection {
.getConnector(childConnectorId);
if (childConnector == null) {
VConsole.error("Hierarchy claims that "
- + childConnectorId + " is a child for "
- + connectorId + " ("
+ + childConnectorId
+ + " is a child for "
+ + connectorId
+ + " ("
+ parentConnector.getClass().getName()
+ ") but no connector with id "
+ childConnectorId
- + " has been registered");
+ + " has been registered. "
+ + "More information might be available in the server-side log if assertions are enabled");
continue;
}
newChildren.add(childConnector);