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:
@@ -626,7 +626,7 @@ public class LogFactoryImpl extends LogFactory {
|
|||||||
|
|
||||||
logDiagnostic("Looking for system property " + property);
|
logDiagnostic("Looking for system property " + property);
|
||||||
try {
|
try {
|
||||||
String value = System.getProperty(LOG_PROPERTY);
|
String value = System.getProperty(property);
|
||||||
logDiagnostic("Found value [" + value + "] for " + property);
|
logDiagnostic("Found value [" + value + "] for " + property);
|
||||||
return value;
|
return value;
|
||||||
} catch (SecurityException e) {
|
} catch (SecurityException e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user