You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2016/03/27 07:12:23 UTC

logging-log4j2 git commit: LOG4J2-1296 javadoc

Repository: logging-log4j2
Updated Branches:
  refs/heads/master ea43a55c8 -> 1ebee7283


LOG4J2-1296 javadoc


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/1ebee728
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/1ebee728
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/1ebee728

Branch: refs/heads/master
Commit: 1ebee7283c66c5bd984abcc34c3e1cf7f4fe268b
Parents: ea43a55
Author: rpopma <rp...@apache.org>
Authored: Sun Mar 27 14:12:27 2016 +0900
Committer: rpopma <rp...@apache.org>
Committed: Sun Mar 27 14:12:27 2016 +0900

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/message/ReusableMessage.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1ebee728/log4j-api/src/main/java/org/apache/logging/log4j/message/ReusableMessage.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/message/ReusableMessage.java b/log4j-api/src/main/java/org/apache/logging/log4j/message/ReusableMessage.java
index 50e3c46..a6da9c4 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/message/ReusableMessage.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/message/ReusableMessage.java
@@ -20,12 +20,12 @@ import org.apache.logging.log4j.util.PerformanceSensitive;
 import org.apache.logging.log4j.util.StringBuilderFormattable;
 
 /**
- * Messages implementing this interface are reused.
+ * Messages implementing this interface are reused between logging calls.
  * <p>
  * If a Message is reusable, downstream components should not hand over this instance to another thread, but extract its
  * content (via the {@link StringBuilderFormattable#formatTo(StringBuilder)} method) instead.
  * </p>
- *
+ * @see ReusableMessageFactory
  * @since 2.6
  */
 @PerformanceSensitive("allocation")