diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-04-27 14:19:07 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-04-27 14:19:07 +0000 |
commit | 3e2dbdf311ec68e3d7c2ca632f4829531521ca3c (patch) | |
tree | 7f606ce39529788b1116501714fd871b9253de5e /src | |
parent | f069d41c6542ba72f50afe62c4c511d9fb3e173c (diff) | |
download | vaadin-framework-3e2dbdf311ec68e3d7c2ca632f4829531521ca3c.tar.gz vaadin-framework-3e2dbdf311ec68e3d7c2ca632f4829531521ca3c.zip |
shout out the widgetset name on module load if debugging
svn changeset:18506/svn branch:6.6
Diffstat (limited to 'src')
-rwxr-xr-x | src/com/vaadin/terminal/gwt/client/VDebugConsole.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/VDebugConsole.java b/src/com/vaadin/terminal/gwt/client/VDebugConsole.java index 100a6c32e7..ec172f67f8 100755 --- a/src/com/vaadin/terminal/gwt/client/VDebugConsole.java +++ b/src/com/vaadin/terminal/gwt/client/VDebugConsole.java @@ -668,6 +668,9 @@ public final class VDebugConsole extends VOverlay implements Console { }); } + log("Starting Vaadin client side engine. Widgetset: " + + GWT.getModuleName()); + log("Widget set is built on version: " + ApplicationConfiguration.VERSION); |