1
0

Fixed copy-and-paste error in getConfigurationValue when getting from system property.

Thanks to Brian Stansberry for spotting this.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@190581 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2005-06-14 11:09:44 +00:00
parent b35e8d3b53
commit 9ecd27bf48

View File

@@ -626,7 +626,7 @@ public class LogFactoryImpl extends LogFactory {
logDiagnostic("Looking for system property " + property);
try {
String value = System.getProperty(LOG_PROPERTY);
String value = System.getProperty(property);
logDiagnostic("Found value [" + value + "] for " + property);
return value;
} catch (SecurityException e) {