This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch doc/2.x/since-tag in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 776b27de2dc11aa306b485e2e2ef01db247a98e6 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Sun Dec 29 09:47:14 2024 +0100 Document `log4j-api` changes in version 2.13.1 --- .../src/main/java/org/apache/logging/log4j/LogBuilder.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/LogBuilder.java b/log4j-api/src/main/java/org/apache/logging/log4j/LogBuilder.java index 4ace64aba8..e35e641c23 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/LogBuilder.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/LogBuilder.java @@ -130,6 +130,7 @@ public interface LogBuilder { * @param message the message to log; the format depends on the message factory. * @param p0 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log(final String message, final Object p0) {} @@ -141,6 +142,7 @@ public interface LogBuilder { * @param p0 parameter to the message. * @param p1 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log(final String message, final Object p0, final Object p1) {} @@ -153,6 +155,7 @@ public interface LogBuilder { * @param p1 parameter to the message. * @param p2 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log(final String message, final Object p0, final Object p1, final Object p2) {} @@ -166,6 +169,7 @@ public interface LogBuilder { * @param p2 parameter to the message. * @param p3 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log(final String message, final Object p0, final Object p1, final Object p2, final Object p3) {} @@ -180,6 +184,7 @@ public interface LogBuilder { * @param p3 parameter to the message. * @param p4 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log( @@ -201,6 +206,7 @@ public interface LogBuilder { * @param p4 parameter to the message. * @param p5 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log( @@ -224,6 +230,7 @@ public interface LogBuilder { * @param p5 parameter to the message. * @param p6 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log( @@ -249,6 +256,7 @@ public interface LogBuilder { * @param p6 parameter to the message. * @param p7 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log( @@ -276,6 +284,7 @@ public interface LogBuilder { * @param p7 parameter to the message. * @param p8 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log( @@ -305,6 +314,7 @@ public interface LogBuilder { * @param p8 parameter to the message. * @param p9 parameter to the message. * + * @since 2.13.1 * @see org.apache.logging.log4j.util.Unbox */ default void log(
