[seam-commits] Seam SVN: r8864 - branches/Seam_2_0/seam-gen/src.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon Sep 1 02:36:16 EDT 2008


Author: dan.j.allen
Date: 2008-09-01 02:36:16 -0400 (Mon, 01 Sep 2008)
New Revision: 8864

Modified:
   branches/Seam_2_0/seam-gen/src/Authenticator.java
Log:
use preferred syntax for positional replacement in message


Modified: branches/Seam_2_0/seam-gen/src/Authenticator.java
===================================================================
--- branches/Seam_2_0/seam-gen/src/Authenticator.java	2008-09-01 05:09:03 UTC (rev 8863)
+++ branches/Seam_2_0/seam-gen/src/Authenticator.java	2008-09-01 06:36:16 UTC (rev 8864)
@@ -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