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 2012/10/11 20:12:38 UTC

svn commit: r1397214 - /logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/Logger.java

Author: ggregory
Date: Thu Oct 11 18:12:37 2012
New Revision: 1397214

URL: http://svn.apache.org/viewvc?rev=1397214&view=rev
Log:
Javadoc.

Modified:
    logging/log4j/log4j2/trunk/api/src/main/java/org/apache/logging/log4j/Logger.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=1397214&r1=1397213&r2=1397214&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 Thu Oct 11 18:12:37 2012
@@ -39,7 +39,7 @@ public interface Logger {
   void catching(Throwable t);
 
   /**
-   * Logs a message with the specific Marker at the DEBUG level.
+   * Logs a message with the specific Marker at the {@link Level#DEBUG DEBUG} level.
    *
    * @param marker the marker data specific to this log statement
    * @param msg    the message string to be logged
@@ -47,7 +47,7 @@ public interface Logger {
   void debug(Marker marker, Message msg);
 
   /**
-   * Logs a message with the specific Marker at the DEBUG level.
+   * Logs a message with the specific Marker at the {@link Level#DEBUG DEBUG} level.
    *
    * @param marker the marker data specific to this log statement
    * @param msg    the message string to be logged
@@ -101,14 +101,14 @@ public interface Logger {
   void debug(Marker marker, String message, Throwable t);
 
   /**
-   * Logs a message with the specific Marker at the DEBUG level.
+   * Logs a message with the specific Marker at the {@link Level#DEBUG DEBUG} level.
    *
    * @param msg the message string to be logged
    */
   void debug(Message msg);
 
   /**
-   * Logs a message with the specific Marker at the DEBUG level.
+   * Logs a message with the specific Marker at the {@link Level#DEBUG DEBUG} level.
    *
    * @param msg the message string to be logged
    * @param t   A Throwable or null.
@@ -445,7 +445,7 @@ public interface Logger {
     String getName();
 
   /**
-   * Logs a message with the specific Marker at the INFO level.
+   * Logs a message with the specific Marker at the {@link Level#INFO INFO} level.
    *
    * @param marker the marker data specific to this log statement
    * @param msg    the message string to be logged
@@ -453,7 +453,7 @@ public interface Logger {
   void info(Marker marker, Message msg);
 
   /**
-   * Logs a message with the specific Marker at the INFO level.
+   * Logs a message with the specific Marker at the {@link Level#INFO INFO} level.
    *
    * @param marker the marker data specific to this log statement
    * @param msg    the message string to be logged
@@ -518,7 +518,7 @@ public interface Logger {
   void info(Message msg);
 
   /**
-   * Logs a message with the specific Marker at the INFO level.
+   * Logs a message with the specific Marker at the {@link Level#INFO INFO} level.
    *
    * @param msg the message string to be logged
    * @param t   A Throwable or null.
@@ -571,7 +571,7 @@ public interface Logger {
   void info(String message, Throwable t);
 
   /**
-   * Checks whether this Logger is enabled for the DEBUG Level.
+   * Checks whether this Logger is enabled for the {@link Level#DEBUG DEBUG} Level.
    *
    * @return boolean - <code>true</code> if this Logger is enabled for level
    *         DEBUG, <code>false</code> otherwise.
@@ -579,7 +579,7 @@ public interface Logger {
   boolean isDebugEnabled();
 
   /**
-   * Checks whether this Logger is enabled for the DEBUG Level.
+   * Checks whether this Logger is enabled for the {@link Level#DEBUG DEBUG} Level.
    *
    * @param marker The marker data specific to this log statement.
    * @return boolean - <code>true</code> if this Logger is enabled for level
@@ -622,7 +622,7 @@ public interface Logger {
   boolean isFatalEnabled(Marker marker);
 
   /**
-   * Checks whether this Logger is enabled for the INFO Level.
+   * Checks whether this Logger is enabled for the {@link Level#INFO INFO} Level.
    *
    * @return boolean - <code>true</code> if this Logger is enabled for level
    *         INFO, <code>false</code> otherwise.
@@ -630,7 +630,7 @@ public interface Logger {
   boolean isInfoEnabled();
 
   /**
-   * Checks whether this Logger is enabled for the INFO Level.
+   * Checks whether this Logger is enabled for the {@link Level#INFO INFO} Level.
    *
    * @param marker The marker data specific to this log statement.
    * @return boolean - <code>true</code> if this Logger is enabled for level