You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sk...@apache.org on 2006/04/16 23:20:22 UTC

svn commit: r394560 - /jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java

Author: skitching
Date: Sun Apr 16 14:20:21 2006
New Revision: 394560

URL: http://svn.apache.org/viewcvs?rev=394560&view=rev
Log:
Fix dumb double-test. Thanks to Dennis Lundberg for pointing this out.

Modified:
    jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java

Modified: jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java?rev=394560&r1=394559&r2=394560&view=diff
==============================================================================
--- jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java (original)
+++ jakarta/commons/proper/logging/trunk/src/java/org/apache/commons/logging/LogFactory.java Sun Apr 16 14:20:21 2006
@@ -1427,13 +1427,11 @@
 
                         if (newPriority > priority) {
                             if (isDiagnosticsEnabled()) {
-                                if (isDiagnosticsEnabled()) {
-                                    logDiagnostic(
-                                        "[LOOKUP] Properties file at '" + url + "'"
-                                        + " with priority " + newPriority 
-                                        + " overrides file at '" + propsUrl + "'"
-                                        + " with priority " + priority);
-                                }
+                                logDiagnostic(
+                                    "[LOOKUP] Properties file at '" + url + "'"
+                                    + " with priority " + newPriority 
+                                    + " overrides file at '" + propsUrl + "'"
+                                    + " with priority " + priority);
                             }
 
                             propsUrl = url; 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org