Repository: tapestry-5 Updated Branches: refs/heads/5.3 4177fd7d7 -> 3f6cadaed
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/3f6cadae Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/3f6cadae Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/3f6cadae Branch: refs/heads/5.3 Commit: 3f6cadaed90e03d22c6fc9f8bf1ca826518eb5a5 Parents: 4177fd7 Author: Jochen Kemnade <[email protected]> Authored: Mon Mar 23 08:39:46 2015 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Mon Mar 23 08:39:46 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/3f6cadae/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 80c2a1c..f8f17fc 100644 --- a/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java +++ b/quickstart/filtered/archetype-resources/src/main/java/services/AppModule.java @@ -91,7 +91,7 @@ public class AppModule { long elapsed = System.currentTimeMillis() - startTime; - log.info(String.format("Request time: %d ms", elapsed)); + log.info("Request time: {} ms", elapsed); } } };
