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 5912DDE22 for ; Mon, 8 Oct 2012 17:05:42 +0000 (UTC) Received: (qmail 80593 invoked by uid 500); 8 Oct 2012 17:05:42 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 80563 invoked by uid 500); 8 Oct 2012 17:05:42 -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 80556 invoked by uid 99); 8 Oct 2012 17:05:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2012 17:05:42 +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; Mon, 08 Oct 2012 17:05:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 28EAA23889B8; Mon, 8 Oct 2012 17:04:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1395666 - in /logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j: Logger.java spi/AbstractLogger.java Date: Mon, 08 Oct 2012 17:04:55 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121008170455.28EAA23889B8@eris.apache.org> Author: ggregory Date: Mon Oct 8 17:04:54 2012 New Revision: 1395666 URL: http://svn.apache.org/viewvc?rev=1395666&view=rev Log: Javadoc clean up: Replace "INFO" with "{@link Level#INFO INFO}". Modified: logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/Logger.java 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/Logger.java URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/Logger.java?rev=1395666&r1=1395665&r2=1395666&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/Logger.java (original) +++ logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/Logger.java Mon Oct 8 17:04:54 2012 @@ -386,7 +386,7 @@ public interface Logger { void info(Marker marker, String message); /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO INFO} level including the * stack trace of the {@link Throwable} t passed as parameter. * * @param message the message object to log. @@ -395,7 +395,7 @@ public interface Logger { void info(String message, Throwable t); /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO INFO} level including the * stack trace of the {@link Throwable} t passed as parameter. * * @param marker the marker data specific to this log statement @@ -420,7 +420,7 @@ public interface Logger { void info(Marker marker, Object message); /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO INFO} level including the * stack trace of the {@link Throwable} t passed as parameter. * * @param message the message object to log. @@ -429,7 +429,7 @@ public interface Logger { void info(Object message, Throwable t); /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO INFO} level including the * stack trace of the {@link Throwable} t passed as parameter. * * @param marker the marker data specific to this log statement @@ -439,7 +439,7 @@ public interface Logger { void info(Marker marker, Object message, Throwable t); /** - * Logs a message with parameters at the INFO level. + * Logs a message with parameters at the {@link Level#INFO INFO} level. * * @param message the message to log. * @param params parameters to the message. @@ -452,7 +452,7 @@ public interface Logger { void info(String message, Object... params); /** - * Logs a message with parameters at the INFO level. + * Logs a message with parameters at the {@link Level#INFO INFO} level. * * @param marker the marker data specific to this log statement * @param message the message to log. 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=1395666&r1=1395665&r2=1395666&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 Mon Oct 8 17:04:54 2012 @@ -587,7 +587,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO 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 } /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO INFO} level including the * stack trace of the {@link Throwable} t passed as parameter. * * @param marker the marker data specific to this log statement. @@ -637,7 +637,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO 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 /** - * Logs a message at the INFO level including the + * Logs a message at the {@link Level#INFO 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 } /** - * Logs a message with parameters at the INFO level. + * Logs a message with parameters at the {@link Level#INFO INFO} level. * * @param message the message to log. * @param params parameters to the message. @@ -678,7 +678,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message with parameters at the INFO level. + * Logs a message with parameters at the {@link Level#INFO INFO} level. * * @param marker the marker data specific to this log statement. * @param message the message to log.