This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/master by this push:
new 439511c2f1 fix SystemPropertyArbiter (#955)
439511c2f1 is described below
commit 439511c2f18d9e2e606bb10aecaac2a8b574d238
Author: DongjianPeng <[email protected]>
AuthorDate: Wed Jul 13 00:03:13 2022 +0800
fix SystemPropertyArbiter (#955)
---
.../logging/log4j/core/config/arbiters/SystemPropertyArbiter.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/arbiters/SystemPropertyArbiter.java
b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/arbiters/SystemPropertyArbiter.java
index 7a8a1b6451..f72207a2d9 100644
---
a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/arbiters/SystemPropertyArbiter.java
+++
b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/arbiters/SystemPropertyArbiter.java
@@ -74,11 +74,11 @@ public class SystemPropertyArbiter implements Arbiter {
/**
* Sets the Property Value.
- * @param propertyValue the property name.
+ * @param propertyValue the property value.
* @return this
*/
public Builder setPropertyValue(final String propertyValue) {
- this.propertyName = propertyValue;
+ this.propertyValue = propertyValue;
return asBuilder();
}