You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2012/01/23 22:23:33 UTC

svn commit: r1234992 - /shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java

Author: bdemers
Date: Mon Jan 23 21:23:32 2012
New Revision: 1234992

URL: http://svn.apache.org/viewvc?rev=1234992&view=rev
Log:
SHIRO-341, fixing log message format

Modified:
    shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java

Modified: shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java
URL: http://svn.apache.org/viewvc/shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java?rev=1234992&r1=1234991&r2=1234992&view=diff
==============================================================================
--- shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java (original)
+++ shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java Mon Jan 23 21:23:32 2012
@@ -133,7 +133,7 @@ public class ReflectionBuilder {
         Object currentInstance = objects.get(name);
         if (currentInstance != null) {
             log.info("An instance with name '{}' already exists.  " +
-                    "Redefining this object as a new instance of type []", name, value);
+                    "Redefining this object as a new instance of type {}", name, value);
         }
 
         Object instance;//name with no property, assume right hand side of equals sign is the class name:



Re: svn commit: r1234992 - /shiro/trunk/core/src/main/java/org/apache/shiro/config/ReflectionBuilder.java

Posted by Les Hazlewood <lh...@apache.org>.
Thanks Brian.  Can you please check this in to (or merge with) the
1.2.x trunk as well in case we make a point release?

Thanks,

Les