Repository: tapestry-5 Updated Branches: refs/heads/master 0a1993457 -> 8380211bc
improve Logger usage Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/8380211b Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/8380211b Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/8380211b Branch: refs/heads/master Commit: 8380211bc138e1b171531869744d8549b7c8c086 Parents: 0a19934 Author: Jochen Kemnade <[email protected]> Authored: Mon Mar 23 08:39:46 2015 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Mon Mar 23 11:11:13 2015 +0100 ---------------------------------------------------------------------- .../archetype-resources/src/main/java/services/AppModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8380211b/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java ---------------------------------------------------------------------- diff --git a/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java b/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java index b2994d6..9af7b82 100644 --- a/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java +++ b/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java @@ -118,7 +118,7 @@ public class AppModule { long elapsed = System.currentTimeMillis() - startTime; - log.info(String.format("Request time: %d ms", elapsed)); + log.info("Request time: {} ms", elapsed); } } };
