Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BC70EDBE8 for ; Sat, 6 Oct 2012 17:39:36 +0000 (UTC) Received: (qmail 76339 invoked by uid 500); 6 Oct 2012 17:39:36 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 76312 invoked by uid 500); 6 Oct 2012 17:39:36 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 76304 invoked by uid 99); 6 Oct 2012 17:39:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Oct 2012 17:39:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Oct 2012 17:39:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E367623889C5; Sat, 6 Oct 2012 17:38:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1395124 - /logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java Date: Sat, 06 Oct 2012 17:38:50 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121006173850.E367623889C5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Sat Oct 6 17:38:50 2012 New Revision: 1395124 URL: http://svn.apache.org/viewvc?rev=1395124&view=rev Log: Use the active voice in Javadocs. Modified: logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java Modified: logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java?rev=1395124&r1=1395123&r2=1395124&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java (original) +++ logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/spi/AbstractLogger.java Sat Oct 6 17:38:50 2012 @@ -59,7 +59,7 @@ public abstract class AbstractLogger imp private static final String FQCN = AbstractLogger.class.getName(); /** - * Log entry to a method. + * Logs entry to a method. */ public void entry() { if (isEnabled(Level.TRACE, ENTRY_MARKER, (Object) null, null)) { @@ -69,7 +69,7 @@ public abstract class AbstractLogger imp /** - * Log entry to a method. + * Logs entry to a method. * * @param params The parameters to the method. */ @@ -80,7 +80,7 @@ public abstract class AbstractLogger imp } /** - * Log exit from a method. + * Logs exit from a method. */ public void exit() { if (isEnabled(Level.TRACE, EXIT_MARKER, (Object) null, null)) { @@ -89,7 +89,7 @@ public abstract class AbstractLogger imp } /** - * Log exiting from a method with the result. + * Logs exiting from a method with the result. * * @param The type of the parameter and object being returned. * @param result The result being returned from the method call. @@ -103,7 +103,7 @@ public abstract class AbstractLogger imp } /** - * Log an exception or error to be thrown. + * Logs an exception or error to be thrown. * * @param the type of the Throwable. * @param t The Throwable. @@ -118,7 +118,7 @@ public abstract class AbstractLogger imp /** - * Log an exception or error to be thrown. + * Logs an exception or error to be thrown. * * @param the type of the Throwable. * @param level The logging Level. @@ -133,7 +133,7 @@ public abstract class AbstractLogger imp } /** - * Log an exception or error that has been caught. + * Logs an exception or error that has been caught. * * @param t The Throwable. */ @@ -144,7 +144,7 @@ public abstract class AbstractLogger imp } /** - * Log an exception or error that has been caught. + * Logs an exception or error that has been caught. * * @param level The logging Level. * @param t The Throwable. @@ -156,7 +156,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. * * @param message the message object to log. */ @@ -167,7 +167,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -179,7 +179,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the TRACE level including the + * Logs a message at the TRACE level including the * stack trace of the {@link Throwable}t passed as parameter. *

*

@@ -197,7 +197,7 @@ public abstract class AbstractLogger imp /** - * Log a message at the TRACE level including the + * Logs a message at the TRACE level including the * stack trace of the {@link Throwable}t passed as parameter. *

*

@@ -215,7 +215,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. * * @param message the message object to log. */ @@ -226,7 +226,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -238,7 +238,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the TRACE level including the + * Logs a message at the TRACE level including the * stack trace of the {@link Throwable}t passed as parameter. *

*

@@ -255,7 +255,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the TRACE level including the + * Logs a message at the TRACE level including the * stack trace of the {@link Throwable}t passed as parameter. *

*

@@ -273,7 +273,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the TRACE level. + * Logs a message with parameters at the TRACE level. * * @param message the message to log. * @param params parameters to the message. @@ -286,7 +286,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the TRACE level. + * Logs a message with parameters at the TRACE level. * * @param marker the marker data specific to this log statement. * @param message the message to log. @@ -300,7 +300,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the TRACE Level. + * Checks whether this Logger is enabled for the TRACE Level. * * @return boolean - true if this Logger is enabled for level * TRACE, false otherwise. @@ -310,7 +310,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the TRACE Level. + * Checks whether this Logger is enabled for the TRACE Level. * * @param marker The marker data. * @return boolean - true if this Logger is enabled for level @@ -321,7 +321,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the TRACE level. + * Logs a message with the specific Marker at the TRACE level. * * @param msg the message string to be logged */ @@ -332,7 +332,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the TRACE level. + * Logs a message with the specific Marker at the TRACE level. * * @param msg the message string to be logged * @param t A Throwable or null. @@ -344,7 +344,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the TRACE level. + * Logs a message with the specific Marker at the TRACE level. * * @param marker the marker data specific to this log statement. * @param msg the message string to be logged @@ -356,7 +356,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the TRACE level. + * Logs a message with the specific Marker at the TRACE level. * * @param marker the marker data specific to this log statement. * @param msg the message string to be logged @@ -369,7 +369,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. * * @param message the message object to log. */ @@ -380,7 +380,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -392,7 +392,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the DEBUG level including the + * Logs a message at the DEBUG level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message to log. @@ -405,7 +405,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the DEBUG level including the + * Logs a message at the DEBUG level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -418,7 +418,7 @@ public abstract class AbstractLogger imp } } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. * * @param message the message object to log. */ @@ -429,7 +429,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -441,7 +441,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the DEBUG level including the + * Logs a message at the DEBUG level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message to log. @@ -454,7 +454,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the DEBUG level including the + * Logs a message at the DEBUG level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -468,7 +468,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the DEBUG level. + * Logs a message with parameters at the DEBUG level. * * @param message the message to log. * @param params parameters to the message. @@ -481,7 +481,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the DEBUG level. + * Logs a message with parameters at the DEBUG level. * * @param marker the marker data specific to this log statement. * @param message the message to log. @@ -495,7 +495,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the DEBUG Level. + * Checks whether this Logger is enabled for the DEBUG Level. * * @return boolean - true if this Logger is enabled for level * DEBUG, false otherwise. @@ -505,7 +505,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the DEBUG Level. + * Checks whether this Logger is enabled for the DEBUG Level. * * @param marker The marker data. * @return boolean - true if this Logger is enabled for level @@ -516,7 +516,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the DEBUG level. + * Logs a message with the specific Marker at the DEBUG level. * * @param msg the message string to be logged */ @@ -527,7 +527,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the DEBUG level. + * Logs a message with the specific Marker at the DEBUG level. * * @param msg the message string to be logged * @param t A Throwable or null. @@ -539,7 +539,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the DEBUG level. + * Logs a message with the specific Marker at the DEBUG level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -551,7 +551,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the DEBUG level. + * Logs a message with the specific Marker at the DEBUG level. * * @param marker the marker data specific to this log statement. * @param msg the message string to be logged @@ -564,7 +564,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. * * @param message the message object to log. */ @@ -575,7 +575,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -587,7 +587,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the INFO level including the + * Logs a message at the INFO level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -600,7 +600,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the INFO level including the + * Logs a message at the INFO level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -614,7 +614,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. * * @param message the message object to log. */ @@ -625,7 +625,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -637,7 +637,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the INFO level including the + * Logs a message at the INFO level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -651,7 +651,7 @@ public abstract class AbstractLogger imp /** - * Log a message at the INFO level including the + * Logs a message at the INFO level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -665,7 +665,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the INFO level. + * Logs a message with parameters at the INFO level. * * @param message the message to log. * @param params parameters to the message. @@ -678,7 +678,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the INFO level. + * Logs a message with parameters at the INFO level. * * @param marker the marker data specific to this log statement. * @param message the message to log. @@ -692,7 +692,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the INFO Level. + * Checks whether this Logger is enabled for the INFO Level. * * @return boolean - true if this Logger is enabled for level * INFO, false otherwise. @@ -702,7 +702,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the INFO Level. + * Checks whether this Logger is enabled for the INFO Level. * @param marker The marker data. * @return boolean - true if this Logger is enabled for level * INFO, false otherwise. @@ -712,7 +712,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the TRACE level. + * Logs a message with the specific Marker at the TRACE level. * * @param msg the message string to be logged */ @@ -723,7 +723,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the INFO level. + * Logs a message with the specific Marker at the INFO level. * * @param msg the message string to be logged * @param t A Throwable or null. @@ -735,7 +735,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the INFO level. + * Logs a message with the specific Marker at the INFO level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -747,7 +747,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the INFO level. + * Logs a message with the specific Marker at the INFO level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -760,7 +760,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. * * @param message the message object to log. */ @@ -771,7 +771,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -783,7 +783,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the WARN level including the + * Logs a message at the WARN level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -796,7 +796,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the WARN level including the + * Logs a message at the WARN level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -810,7 +810,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -822,7 +822,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. * * @param message the message object to log. */ @@ -833,7 +833,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the WARN level including the + * Logs a message at the WARN level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -846,7 +846,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the WARN level including the + * Logs a message at the WARN level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -860,7 +860,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the WARN level. + * Logs a message with parameters at the WARN level. * * @param message the message to log. * @param params parameters to the message. @@ -873,7 +873,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the WARN level. + * Logs a message with parameters at the WARN level. * * @param marker the marker data specific to this log statement. * @param message the message to log. @@ -887,7 +887,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the WARN Level. + * Checks whether this Logger is enabled for the WARN Level. * * @return boolean - true if this Logger is enabled for level * WARN, false otherwise. @@ -897,7 +897,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the WARN Level. + * Checks whether this Logger is enabled for the WARN Level. * * @param marker The marker data. * @return boolean - true if this Logger is enabled for level @@ -908,7 +908,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the WARN level. + * Logs a message with the specific Marker at the WARN level. * * @param msg the message string to be logged */ @@ -919,7 +919,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the WARN level. + * Logs a message with the specific Marker at the WARN level. * * @param msg the message string to be logged * @param t A Throwable or null. @@ -931,7 +931,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the WARN level. + * Logs a message with the specific Marker at the WARN level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -943,7 +943,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the WARN level. + * Logs a message with the specific Marker at the WARN level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -956,7 +956,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. * * @param message the message object to log. */ @@ -967,7 +967,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -979,7 +979,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the ERROR level including the + * Logs a message at the ERROR level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -992,7 +992,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the ERROR level including the + * Logs a message at the ERROR level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -1006,7 +1006,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. * * @param message the message object to log. */ @@ -1017,7 +1017,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -1029,7 +1029,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the ERROR level including the + * Logs a message at the ERROR level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -1042,7 +1042,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the ERROR level including the + * Logs a message at the ERROR level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -1056,7 +1056,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the ERROR level. + * Logs a message with parameters at the ERROR level. * * @param message the message to log. * @param params parameters to the message. @@ -1069,7 +1069,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the ERROR level. + * Logs a message with parameters at the ERROR level. * * @param marker the marker data specific to this log statement. * @param message the message to log. @@ -1084,7 +1084,7 @@ public abstract class AbstractLogger imp /** - * Check whether this Logger is enabled for the ERROR Level. + * Checks whether this Logger is enabled for the ERROR Level. * * @return boolean - true if this Logger is enabled for level * ERROR, false otherwise. @@ -1094,7 +1094,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the ERROR Level. + * Checks whether this Logger is enabled for the ERROR Level. * * @param marker The marker data. * @return boolean - true if this Logger is enabled for level @@ -1105,7 +1105,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the ERROR level. + * Logs a message with the specific Marker at the ERROR level. * * @param msg the message string to be logged */ @@ -1116,7 +1116,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the ERROR level. + * Logs a message with the specific Marker at the ERROR level. * * @param msg the message string to be logged * @param t A Throwable or null. @@ -1128,7 +1128,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the ERROR level. + * Logs a message with the specific Marker at the ERROR level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -1140,7 +1140,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the ERROR level. + * Logs a message with the specific Marker at the ERROR level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -1153,7 +1153,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. * * @param message the message object to log. */ @@ -1165,7 +1165,7 @@ public abstract class AbstractLogger imp /** - * Log a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -1177,7 +1177,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the FATAL level including the + * Logs a message at the FATAL level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -1190,7 +1190,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the FATAL level including the + * Logs a message at the FATAL level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -1204,7 +1204,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. * * @param message the message object to log. */ @@ -1215,7 +1215,7 @@ public abstract class AbstractLogger imp } /** - * Log a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -1227,7 +1227,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the FATAL level including the + * Logs a message at the FATAL level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param message the message object to log. @@ -1240,7 +1240,7 @@ public abstract class AbstractLogger imp } /** - * Log a message at the FATAL level including the + * Logs a message at the FATAL level including the * stack trace of the {@link Throwable}t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -1254,7 +1254,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the FATAL level. + * Logs a message with parameters at the FATAL level. * * @param message the message to log. * @param params parameters to the message. @@ -1267,7 +1267,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with parameters at the FATAL level. + * Logs a message with parameters at the FATAL level. * * @param marker the marker data specific to this log statement. * @param message the message to log. @@ -1281,7 +1281,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the FATAL Level. + * Checks whether this Logger is enabled for the FATAL Level. * * @return boolean - true if this Logger is enabled for level * FATAL, false otherwise. @@ -1291,7 +1291,7 @@ public abstract class AbstractLogger imp } /** - * Check whether this Logger is enabled for the FATAL Level. + * Checks whether this Logger is enabled for the FATAL Level. * * @param marker The marker data. * @return boolean - true if this Logger is enabled for level @@ -1302,7 +1302,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the FATAL level. + * Logs a message with the specific Marker at the FATAL level. * * @param msg the message string to be logged */ @@ -1313,7 +1313,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the FATAL level. + * Logs a message with the specific Marker at the FATAL level. * * @param msg the message string to be logged * @param t A Throwable or null. @@ -1325,7 +1325,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the FATAL level. + * Logs a message with the specific Marker at the FATAL level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -1337,7 +1337,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with the specific Marker at the FATAL level. + * Logs a message with the specific Marker at the FATAL level. * * @param marker the marker data specific to this log statement * @param msg the message string to be logged @@ -1350,7 +1350,7 @@ public abstract class AbstractLogger imp } /** - * Log a message with location information. + * Logs a message with location information. * * @param marker The Marker * @param fqcn The fully qualified class name of the caller