[seam-commits] Seam SVN: r8865 - trunk/seam-gen/src.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Sep 1 02:36:25 EDT 2008
Author: dan.j.allen
Date: 2008-09-01 02:36:25 -0400 (Mon, 01 Sep 2008)
New Revision: 8865
Modified:
trunk/seam-gen/src/Authenticator.java
Log:
use preferred syntax for positional replacement in message
Modified: trunk/seam-gen/src/Authenticator.java
===================================================================
--- trunk/seam-gen/src/Authenticator.java 2008-09-01 06:36:16 UTC (rev 8864)
+++ trunk/seam-gen/src/Authenticator.java 2008-09-01 06:36:25 UTC (rev 8865)
@@ -16,7 +16,7 @@
public boolean authenticate()
{
- log.info("authenticating #0", identity.getUsername());
+ log.info("authenticating {0}", identity.getUsername());
//write your authentication logic here,
//return true if the authentication was
//successful, false otherwise
More information about the seam-commits
mailing list