1
0

Corrected non-harmful mistake spotted by Dennis Lundberg.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@399417 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Burrell Donkin
2006-05-03 20:38:01 +00:00
parent 12fcab3cb6
commit 481a7fc7ca

View File

@@ -1461,11 +1461,11 @@ public abstract class LogFactory {
if (isDiagnosticsEnabled()) { if (isDiagnosticsEnabled()) {
if (props == null) { if (props == null) {
logDiagnostic( logDiagnostic(
"[LOOKUP] No properties file of name '" + FACTORY_PROPERTIES "[LOOKUP] No properties file of name '" + fileName
+ "' found."); + "' found.");
} else { } else {
logDiagnostic( logDiagnostic(
"[LOOKUP] Properties file of name '" + FACTORY_PROPERTIES "[LOOKUP] Properties file of name '" + fileName
+ "' found at '" + propsUrl + '"'); + "' found at '" + propsUrl + '"');
} }
} }