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 024A4DBE6 for ; Sun, 4 Nov 2012 13:56:25 +0000 (UTC) Received: (qmail 49037 invoked by uid 500); 4 Nov 2012 13:56:24 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 48999 invoked by uid 500); 4 Nov 2012 13:56:24 -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 48963 invoked by uid 99); 4 Nov 2012 13:56:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Nov 2012 13:56:22 +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; Sun, 04 Nov 2012 13:56:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E3338238896F; Sun, 4 Nov 2012 13:55:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1405544 - /logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java Date: Sun, 04 Nov 2012 13:55:58 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121104135558.E3338238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Sun Nov 4 13:55:58 2012 New Revision: 1405544 URL: http://svn.apache.org/viewvc?rev=1405544&view=rev Log: Jaavdoc: use the active voice. Modified: logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java Modified: logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java?rev=1405544&r1=1405543&r2=1405544&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java (original) +++ logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/config/LoggerConfig.java Sun Nov 4 13:55:58 2012 @@ -128,7 +128,7 @@ public class LoggerConfig extends Abstra } /** - * Set the parent of this LoggerConfig. + * Sets the parent of this LoggerConfig. * @param parent the parent LoggerConfig. */ public void setParent(LoggerConfig parent) { @@ -144,7 +144,7 @@ public class LoggerConfig extends Abstra } /** - * Add an Appender to the LoggerConfig. + * Adds an Appender to the LoggerConfig. * @param appender The Appender to add. * @param level The Level to use. * @param filter A Filter for the Appender reference. @@ -154,7 +154,7 @@ public class LoggerConfig extends Abstra } /** - * Remove the Appender with the specific name. + * Removes the Appender with the specific name. * @param name The name of the Appender. */ public void removeAppender(String name) { @@ -177,7 +177,7 @@ public class LoggerConfig extends Abstra } /** - * Remove all Appenders. + * Removes all Appenders. */ protected void clearAppenders() { waitForCompletion(); @@ -209,7 +209,7 @@ public class LoggerConfig extends Abstra } /** - * Set the logging Level. + * Sets the logging Level. * @param level The logging Level. */ public void setLevel(Level level) { @@ -233,7 +233,7 @@ public class LoggerConfig extends Abstra } /** - * Set the LogEventFactory. Usually the LogEventFactory will be this LoggerConfig. + * Sets the LogEventFactory. Usually the LogEventFactory will be this LoggerConfig. * @param logEventFactory the LogEventFactory. */ public void setLogEventFactory(LogEventFactory logEventFactory) { @@ -249,7 +249,7 @@ public class LoggerConfig extends Abstra } /** - * Set the additive setting. + * Sets the additive setting. * @param additive true if thee LoggerConfig should be additive, false otherwise. */ public void setAdditive(boolean additive) { @@ -257,7 +257,7 @@ public class LoggerConfig extends Abstra } /** - * Log an event. + * Logs an event. * @param loggerName The name of the Logger. * @param marker A Marker or null if none is present. * @param fqcn The fully qualified class name of the caller. @@ -281,7 +281,7 @@ public class LoggerConfig extends Abstra } /** - * Wait for all log events to complete before shutting down this loggerConfig. + * Waits for all log events to complete before shutting down this loggerConfig. */ private synchronized void waitForCompletion() { if (shutdown) { @@ -336,7 +336,7 @@ public class LoggerConfig extends Abstra } /** - * Create a log event. + * Creates a log event. * @param loggerName The name of the Logger. * @param marker An optional Marker. * @param fqcn The fully qualified class name of the caller.