[slf4j-dev] svn commit: r395 - in slf4j/trunk: . src/java/org/slf4j src/java/org/slf4j/impl

ceki at slf4j.org ceki at slf4j.org
Wed Oct 19 14:55:07 CEST 2005


Author: ceki
Date: Wed Oct 19 14:55:06 2005
New Revision: 395

Modified:
   slf4j/trunk/   (props changed)
   slf4j/trunk/src/java/org/slf4j/MarkerFactory.java
   slf4j/trunk/src/java/org/slf4j/MarkingLogger.java
   slf4j/trunk/src/java/org/slf4j/impl/Log4jLoggerAdapter.java
Log:
Minor javadocs changes.

Modified: slf4j/trunk/src/java/org/slf4j/MarkerFactory.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/MarkerFactory.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/MarkerFactory.java	Wed Oct 19 14:55:06 2005
@@ -40,12 +40,12 @@
 // WARNING
 
 /**
- * MarkerFactory is a utility class producing {@link Marker}instances as
+ * MarkerFactory is a utility class producing {@link Marker} instances as
  * appropriate for the logging system currently in use.
  * 
  * <p>
  * This class is essentially implemented as a wrapper around an
- * {@link IMarkerFactory}instance bound at compile time.
+ * {@link IMarkerFactory} instance bound at compile time.
  * 
  * <p>
  * Please note that all methods in this class are static.

Modified: slf4j/trunk/src/java/org/slf4j/MarkingLogger.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/MarkingLogger.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/MarkingLogger.java	Wed Oct 19 14:55:06 2005
@@ -34,8 +34,7 @@
 
 /**
  * 
- * The main user interface to logging. It is expected that logging
- * takes place through concrete implementations of this interface.
+ * Extension of the {@link Logger} interface adding {@link Marker} support.
  * 
  * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
  */

Modified: slf4j/trunk/src/java/org/slf4j/impl/Log4jLoggerAdapter.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/impl/Log4jLoggerAdapter.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/impl/Log4jLoggerAdapter.java	Wed Oct 19 14:55:06 2005
@@ -61,9 +61,9 @@
   }
   
   /**
-   * Is this logger instance enabled for the FINE level?
+   * Is this logger instance enabled for the DEBUG level?
    *
-   * @return True if this Logger is enabled for level FINE, false
+   * @return True if this Logger is enabled for level DEBUG, false
    * otherwise.
    */
   public boolean isDebugEnabled() {
@@ -72,7 +72,7 @@
 
 
   /**
-   * Log a message object at level FINE.
+   * Log a message object at level DEBUG.
    * @param msg - the message object to be logged
    */
   public void debug(String msg) {
@@ -80,11 +80,11 @@
   }
 
   /**
-   * Log a message at level FINE according to the specified format and
+   * Log a message at level DEBUG according to the specified format and
    * argument.
    *
    * <p>This form avoids superfluous object creation when the logger
-   * is disabled for level FINE. </p>
+   * is disabled for level DEBUG. </p>
    *
    * @param format the format string
    * @param arg  the argument
@@ -97,11 +97,11 @@
   }
 
   /**
-   * Log a message at level FINE according to the specified format and
+   * Log a message at level DEBUG according to the specified format and
    * arguments.
    *
    * <p>This form avoids superfluous object creation when the logger
-   * is disabled for the FINE level. </p>
+   * is disabled for the DEBUG level. </p>
    *
    * @param format the format string
    * @param arg1  the first argument
@@ -115,7 +115,7 @@
   }
 
   /**
-   * Log an exception (throwable) at  level FINE with an
+   * Log an exception (throwable) at  level DEBUG with an
    * accompanying message.
    *
    * @param msg the message accompanying the exception
@@ -195,9 +195,9 @@
   }
 
   /**
-   * Is this logger instance enabled for the WARNING level?
+   * Is this logger instance enabled for the WARN level?
    *
-   * @return True if this Logger is enabled for the WARNING level,
+   * @return True if this Logger is enabled for the WARN level,
    * false otherwise.
    */
   public boolean isWarnEnabled() {
@@ -205,7 +205,7 @@
   }
   
   /**
-   * Log a message object at the WARNING level.
+   * Log a message object at the WARN level.
    *
    * @param msg - the message object to be logged
    */
@@ -214,11 +214,11 @@
   }
 
   /**
-   * Log a message at the WARNING level according to the specified
+   * Log a message at the WARN level according to the specified
    * format and argument.
    *
    * <p>This form avoids superfluous object creation when the logger
-   * is disabled for the WARNING level. </p>
+   * is disabled for the WARN level. </p>
    *
    * @param format the format string
    * @param arg  the argument
@@ -231,11 +231,11 @@
   }
 
   /**
-   * Log a message at the WARNING level according to the specified
+   * Log a message at the WARN level according to the specified
    * format and arguments.
    *
    * <p>This form avoids superfluous object creation when the logger
-   * is disabled for the WARNING level. </p>
+   * is disabled for the WARN level. </p>
    *
    * @param format the format string
    * @param arg1  the first argument
@@ -249,7 +249,7 @@
   }
 
   /**
-   * Log an exception (throwable) at the WARNING level with an
+   * Log an exception (throwable) at the WARN level with an
    * accompanying message.
    *
    * @param msg the message accompanying the exception
@@ -260,9 +260,9 @@
   }
 
   /**
-   * Is this logger instance enabled for level SEVERE?
+   * Is this logger instance enabled for level ERROR?
    *
-   * @return True if this Logger is enabled for level SEVERE, false
+   * @return True if this Logger is enabled for level ERROR, false
    * otherwise.
    */
   public boolean isErrorEnabled() {
@@ -270,7 +270,7 @@
   }
 
   /**
-   * Log a message object at the SEVERE level.
+   * Log a message object at the ERROR level.
    *
    * @param msg - the message object to be logged
    */
@@ -279,11 +279,11 @@
   }
 
   /**
-   * Log a message at the SEVERE level according to the specified
+   * Log a message at the ERROR level according to the specified
    * format and argument.
    *
    * <p>This form avoids superfluous object creation when the logger
-   * is disabled for the SEVERE level. </p>
+   * is disabled for the ERROR level. </p>
    *
    * @param format the format string
    * @param arg  the argument
@@ -296,11 +296,11 @@
   }
 
   /**
-   * Log a message at the SEVERE level according to the specified
+   * Log a message at the ERROR level according to the specified
    * format and arguments.
    *
    * <p>This form avoids superfluous object creation when the logger
-   * is disabled for the SEVERE level. </p>
+   * is disabled for the ERROR level. </p>
    *
    * @param format the format string
    * @param arg1  the first argument
@@ -314,7 +314,7 @@
   }
 
   /**
-   * Log an exception (throwable) at the SEVERE level with an
+   * Log an exception (throwable) at the ERROR level with an
    * accompanying message.
    *
    * @param msg the message accompanying the exception



More information about the slf4j-dev mailing list