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/03/29 17:43:50 UTC

[logging-log4j2] branch master updated: Fix Javadoc issues

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 c02e6ce  Fix Javadoc issues
c02e6ce is described below

commit c02e6ce27a805ed3b2e6832026744f4d4dbd0600
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Sun Mar 29 10:43:34 2020 -0700

    Fix Javadoc issues
---
 .../org/apache/logging/log4j/jackson/AbstractJacksonLayout.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/log4j-layout-jackson/src/main/java/org/apache/logging/log4j/jackson/AbstractJacksonLayout.java b/log4j-layout-jackson/src/main/java/org/apache/logging/log4j/jackson/AbstractJacksonLayout.java
index 549cce5..5a28f45 100644
--- a/log4j-layout-jackson/src/main/java/org/apache/logging/log4j/jackson/AbstractJacksonLayout.java
+++ b/log4j-layout-jackson/src/main/java/org/apache/logging/log4j/jackson/AbstractJacksonLayout.java
@@ -123,7 +123,7 @@ public abstract class AbstractJacksonLayout extends AbstractStringLayout {
 
         /**
          * Additional fields to set on each log event.
-         *
+         * @param additionalFields The additional Key/Value pairs to add.
          * @return this builder
          */
         public B setAdditionalFields(final KeyValuePair[] additionalFields) {
@@ -153,7 +153,7 @@ public abstract class AbstractJacksonLayout extends AbstractStringLayout {
 
         /**
          * Whether to include NULL byte as delimiter after each event (optional, default to false).
-         *
+         * @param includeNullDelimiter true if a null delimiter should be included.
          * @return this builder
          */
         public B setIncludeNullDelimiter(final boolean includeNullDelimiter) {
@@ -185,7 +185,7 @@ public abstract class AbstractJacksonLayout extends AbstractStringLayout {
 
         /**
          * Whether to format the stacktrace as a string, and not a nested object (optional, defaults to false).
-         *
+         * @param stacktraceAsString true if the stacktrace should be formatted as a String.
          * @return this builder
          */
         public B setStacktraceAsString(final boolean stacktraceAsString) {