From: Artur Signell Date: Mon, 28 Dec 2009 09:33:25 +0000 (+0000) Subject: Added unit to "JSON parsing took" message X-Git-Tag: 6.7.0.beta1~2084^2~20 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=62051b9b71412ccd57228304cd15154b9b3fb9cc;p=vaadin-framework.git Added unit to "JSON parsing took" message svn changeset:10549/svn branch:6.2 --- diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 8060edfe74..c13a9d60ba 100755 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -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");