You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2020/08/02 20:46:40 UTC

[logging-log4j2] 02/02: LOG4J2-2822 - Javadoc link in ThreadContext description was incorrect

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

commit 1375a663c95a28fe72f1f97223a883e04e6c7c0c
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Sun Aug 2 13:46:18 2020 -0700

    LOG4J2-2822 - Javadoc link in ThreadContext description was incorrect
---
 log4j-api/src/main/java/org/apache/logging/log4j/ThreadContext.java | 3 ++-
 src/changes/changes.xml                                             | 3 +++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/ThreadContext.java b/log4j-api/src/main/java/org/apache/logging/log4j/ThreadContext.java
index 18471b7..d643cd9 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/ThreadContext.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/ThreadContext.java
@@ -42,7 +42,8 @@ import org.apache.logging.log4j.util.PropertiesUtil;
  * The ThreadContext allows applications to store information either in a Map or a Stack.
  * <p>
  * <b><em>The MDC is managed on a per thread basis</em></b>. To enable automatic inheritance of <i>copies</i> of the MDC
- * to newly created threads, enable the {@value DefaultThreadContextMap#INHERITABLE_MAP} Log4j system property.
+ * to newly created threads, enable the {@value org.apache.logging.log4j.spi.DefaultThreadContextMap#INHERITABLE_MAP}
+ * Log4j system property.
  * </p>
  * @see <a href="https://logging.apache.org/log4j/2.x/manual/thread-context.html">Thread Context Manual</a>
  */
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a22f70e..9017b28 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -181,6 +181,9 @@
       </action>
     </release>
     <release version="2.14.0" date="2020-MM-DD" description="GA Release 2.14.0">
+      <action issue="LOG4J2-2822" dev="rgoers" type="fix">
+        Javadoc link in ThreadContext description was incorrect.
+      </action>
       <action issue="LOG4J2-2894" dev="rgoers" type="fix">
         Fix spelling error in log message.
       </action>