You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2022/01/07 22:44:08 UTC

[logging-log4j2] branch release-2.x updated: Fix indentation.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new 9602f7a  Fix indentation.
9602f7a is described below

commit 9602f7a1c86ab4830be9ca5f643b3f927a2e2b56
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jan 7 17:44:05 2022 -0500

    Fix indentation.
---
 .../apache/logging/log4j/spi/ExtendedLogger.java   | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/spi/ExtendedLogger.java b/log4j-api/src/main/java/org/apache/logging/log4j/spi/ExtendedLogger.java
index 8e943e7..b0662e9 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/spi/ExtendedLogger.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/spi/ExtendedLogger.java
@@ -498,17 +498,17 @@ public interface ExtendedLogger extends Logger {
     void logIfEnabled(String fqcn, Level level, Marker marker, String message, Object p0, Object p1, Object p2,
             Object p3, Object p4, Object p5, Object p6, Object p7, Object p8, Object p9);
 
-        /**
-         * Always logs a message at the specified level. It is the responsibility of the caller to ensure the specified
-         * level is enabled.
-         *
-         * @param fqcn The fully qualified class name of the logger entry point, used to determine the caller class and
-         *            method when location information needs to be logged.
-         * @param level The logging Level to check.
-         * @param marker A Marker or null.
-         * @param message The Message.
-         * @param t the exception to log, including its stack trace.
-         */
+    /**
+     * Always logs a message at the specified level. It is the responsibility of the caller to ensure the specified
+     * level is enabled.
+     *
+     * @param fqcn The fully qualified class name of the logger entry point, used to determine the caller class and
+     *            method when location information needs to be logged.
+     * @param level The logging Level to check.
+     * @param marker A Marker or null.
+     * @param message The Message.
+     * @param t the exception to log, including its stack trace.
+     */
     void logMessage(String fqcn, Level level, Marker marker, Message message, Throwable t);
 
     /**