From commits-return-1266-apmail-logging-commits-archive=logging.apache.org@logging.apache.org Mon Oct 8 17:01:09 2012 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 D96C8DDD4 for ; Mon, 8 Oct 2012 17:01:09 +0000 (UTC) Received: (qmail 62888 invoked by uid 500); 8 Oct 2012 17:01:09 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 62863 invoked by uid 500); 8 Oct 2012 17:01:09 -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 62856 invoked by uid 99); 8 Oct 2012 17:01:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Oct 2012 17:01:09 +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:01:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D061E2388B9B; Mon, 8 Oct 2012 17:00:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1395660 - in /logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j: Logger.java spi/AbstractLogger.java Date: Mon, 08 Oct 2012 17:00:24 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121008170024.D061E2388B9B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Mon Oct 8 17:00:24 2012 New Revision: 1395660 URL: http://svn.apache.org/viewvc?rev=1395660&view=rev Log: Javadoc clean up: Replace "{@link org.apache.logging.log4j.Level#" with "{@link Level#". 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=1395660&r1=1395659&r2=1395660&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:00:24 2012 @@ -89,14 +89,14 @@ public interface Logger { void catching(Level level, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param message the message object to log. */ void trace(String message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -131,14 +131,14 @@ public interface Logger { void trace(Marker marker, String message, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param message the message object to log. */ void trace(Object message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -238,14 +238,14 @@ public interface Logger { void trace(Marker marker, Message msg, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param message the message object to log. */ void debug(String message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -272,14 +272,14 @@ public interface Logger { void debug(Marker marker, String message, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param message the message object to log. */ void debug(Object message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -371,14 +371,14 @@ public interface Logger { void debug(Marker marker, Message msg, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param message the message object to log. */ void info(String message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -405,14 +405,14 @@ public interface Logger { void info(Marker marker, String message, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param message the message object to log. */ void info(Object message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -514,14 +514,14 @@ public interface Logger { void info(Marker marker, Message msg, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param message the message object to log. */ void warn(String message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -548,14 +548,14 @@ public interface Logger { void warn(Marker marker, String message, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param message the message object to log. */ void warn(Object message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param marker the marker data specific to this log statement * @param message the message object to log. @@ -656,14 +656,14 @@ public interface Logger { void warn(Marker marker, Message msg, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param message the message object to log. */ void error(String message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -690,14 +690,14 @@ public interface Logger { void error(Marker marker, String message, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param message the message object to log. */ void error(Object message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -799,14 +799,14 @@ public interface Logger { void error(Marker marker, Message msg, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param message the message object to log. */ void fatal(String message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param marker The marker data specific to this log statement. * @param message the message object to log. @@ -834,14 +834,14 @@ public interface Logger { void fatal(Marker marker, String message, Throwable t); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param message the message object to log. */ void fatal(Object message); /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param marker The marker data specific to this log statement. * @param message the message object 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=1395660&r1=1395659&r2=1395660&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:00:24 2012 @@ -156,7 +156,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param message the message object to log. */ @@ -167,7 +167,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -215,7 +215,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param message the message object to log. */ @@ -226,7 +226,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#TRACE TRACE} level. + * Logs a message object with the {@link Level#TRACE TRACE} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -369,7 +369,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param message the message object to log. */ @@ -380,7 +380,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -418,7 +418,7 @@ public abstract class AbstractLogger imp } } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param message the message object to log. */ @@ -429,7 +429,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#DEBUG DEBUG} level. + * Logs a message object with the {@link Level#DEBUG DEBUG} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -564,7 +564,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param message the message object to log. */ @@ -575,7 +575,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -614,7 +614,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param message the message object to log. */ @@ -625,7 +625,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#INFO INFO} level. + * Logs a message object with the {@link Level#INFO INFO} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -760,7 +760,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param message the message object to log. */ @@ -771,7 +771,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -810,7 +810,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link 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 } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#WARN WARN} level. + * Logs a message object with the {@link Level#WARN WARN} level. * * @param message the message object to log. */ @@ -956,7 +956,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param message the message object to log. */ @@ -967,7 +967,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -1006,7 +1006,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param message the message object to log. */ @@ -1017,7 +1017,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#ERROR ERROR} level. + * Logs a message object with the {@link Level#ERROR ERROR} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -1153,7 +1153,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param message the message object to log. */ @@ -1165,7 +1165,7 @@ public abstract class AbstractLogger imp /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log. @@ -1204,7 +1204,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param message the message object to log. */ @@ -1215,7 +1215,7 @@ public abstract class AbstractLogger imp } /** - * Logs a message object with the {@link org.apache.logging.log4j.Level#FATAL FATAL} level. + * Logs a message object with the {@link Level#FATAL FATAL} level. * * @param marker the marker data specific to this log statement. * @param message the message object to log.