]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added unit to "JSON parsing took" message
authorArtur Signell <artur.signell@itmill.com>
Mon, 28 Dec 2009 09:33:25 +0000 (09:33 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 28 Dec 2009 09:33:25 +0000 (09:33 +0000)
svn changeset:10549/svn branch:6.2

src/com/vaadin/terminal/gwt/client/ApplicationConnection.java

index 8060edfe74639bd60fea55f2563ddb741800dc2d..c13a9d60bac98f7f3d1923f89029d5e18a85f040 100755 (executable)
@@ -693,10 +693,9 @@ public class ApplicationConnection {
             return;
         }
 
-        ApplicationConnection.getConsole()
-                .log(
-                        "JSON parsing took "
-                                + (new Date().getTime() - start.getTime()));
+        ApplicationConnection.getConsole().log(
+                "JSON parsing took " + (new Date().getTime() - start.getTime())
+                        + "ms");
         // Handle redirect
         if (json.containsKey("redirect")) {
             String url = json.getValueMap("redirect").getString("url");