[slf4j-dev] svn commit: r513 - in slf4j/trunk/src: filtered-java/org/slf4j/impl java/org/apache/commons/logging java/org/apache/commons/logging/impl java/org/slf4j java/org/slf4j/impl

ceki at slf4j.org ceki at slf4j.org
Mon Jan 23 14:40:29 CET 2006


Author: ceki
Date: Mon Jan 23 14:40:27 2006
New Revision: 513

Modified:
   slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticLoggerBinder.java
   slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticMarkerBinder.java
   slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java
   slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4FLogFactory.java
   slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4JLog.java
   slf4j/trunk/src/java/org/slf4j/ILoggerFactory.java
   slf4j/trunk/src/java/org/slf4j/LoggerFactory.java
   slf4j/trunk/src/java/org/slf4j/Marker.java
   slf4j/trunk/src/java/org/slf4j/impl/SystemPropBinder.java
Log:

javadoc changes

Modified: slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticLoggerBinder.java	(original)
+++ slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticLoggerBinder.java	Mon Jan 23 14:40:27 2006
@@ -41,14 +41,14 @@
 import org.slf4j.spi.MarkerFactoryBinder;
 
 /**
- * 
  * The binding of {@link LoggerFactory} class with an actual instance of 
  * {@link ILoggerFactory} is performed using information returned by this class. 
  * 
+ * <p>
  * This class also contains the information for binding {@link MarkerFactory}
  * with the appropriate {@link IMarkerFactory} instance.
  * 
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
+ * @author Ceki G&uuml;lc&uuml;
  */
 public class StaticLoggerBinder implements LoggerFactoryBinder {
 

Modified: slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticMarkerBinder.java
==============================================================================
--- slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticMarkerBinder.java	(original)
+++ slf4j/trunk/src/filtered-java/org/slf4j/impl/StaticMarkerBinder.java	Mon Jan 23 14:40:27 2006
@@ -45,7 +45,7 @@
  * The binding of {@link MarkerFactory} class with an actual instance of 
  * {@link IMarkerFactory} is performed using information returned by this class. 
  * 
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
+ * @author Ceki G&uuml;lc&uuml;
  */
 public class StaticMarkerBinder implements MarkerFactoryBinder {
 
@@ -68,7 +68,7 @@
   }
   
   /**
-   * Currrently, this method returns the class name of
+   * Currently, this method returns the class name of
    * {@link BasicMarkerFactory}.
    */
   public String getMarkerFactoryClassStr() {

Modified: slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java
==============================================================================
--- slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java	(original)
+++ slf4j/trunk/src/java/org/apache/commons/logging/LogFactory.java	Mon Jan 23 14:40:27 2006
@@ -28,7 +28,7 @@
  * @author Craig R. McClanahan
  * @author Costin Manolache
  * @author Richard A. Sitze
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a> 
+ * @author Ceki G&uuml;lc&uuml; 
  */
 
 public abstract class LogFactory {

Modified: slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4FLogFactory.java
==============================================================================
--- slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4FLogFactory.java	(original)
+++ slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4FLogFactory.java	Mon Jan 23 14:40:27 2006
@@ -45,7 +45,7 @@
  * @author Rod Waldhoff
  * @author Craig R. McClanahan
  * @author Richard A. Sitze
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
+ * @author Ceki G&uuml;lc&uuml;
  */
 
 public class SLF4FLogFactory extends LogFactory {

Modified: slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4JLog.java
==============================================================================
--- slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4JLog.java	(original)
+++ slf4j/trunk/src/java/org/apache/commons/logging/impl/SLF4JLog.java	Mon Jan 23 14:40:27 2006
@@ -12,7 +12,7 @@
  * <p>JCL's FATAL and TRACE levels are mapped to ERROR and DEBUG respectively. All 
  * other levels map one to one.
  * 
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
+ * @author Ceki G&uuml;lc&uuml;
  */
 public class SLF4JLog implements Log {
 

Modified: slf4j/trunk/src/java/org/slf4j/ILoggerFactory.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/ILoggerFactory.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/ILoggerFactory.java	Mon Jan 23 14:40:27 2006
@@ -37,17 +37,17 @@
  * <code>ILoggerFactory</code> instances manufacture {@link Logger}
  * instances by name.
  * 
- * <p>Most users retreive {@link Logger} instances through the static
+ * <p>Most users retrieve {@link Logger} instances through the static
  * {@link LoggerFactory#getLogger(String)} method. An instance of of this
  * interface is bound internally with {@link LoggerFactory} class at 
- * compile time. Only developers of SLF4J conformant logging systems 
+ * compile time. Only developers of SLF4J conforming logging systems 
  * need to worry about this interface. 
  * 
  * <p>See the section <a href="http://slf4j.org/faq.html#3">Implementing 
  * the SLF4J API</a> in the FAQ for details on how to make your logging 
  * system conform to SLF4J.
  * 
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
+ * @author Ceki G&uuml;lc&uuml;
  */
 public interface ILoggerFactory {
   

Modified: slf4j/trunk/src/java/org/slf4j/LoggerFactory.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/LoggerFactory.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/LoggerFactory.java	Mon Jan 23 14:40:27 2006
@@ -35,15 +35,10 @@
 import org.slf4j.impl.StaticLoggerBinder;
 import org.slf4j.impl.Util;
 
-// WARNING
-// WARNING Modifications MUST be made to the original file found at
-// WARNING $SLF4J_HOME/src/filtered-java/org/slf4j/LoggerFactory.java
-// WARNING
-
 /**
  * The <code>LoggerFactory</code> is a utility class producing Loggers for
  * various logging APIs, most notably for NLOG4J and JDK 1.4 logging. Other
- * implemenations such as {@link org.slf4j.impl.NOPLogger NOPLogger} and
+ * implementations such as {@link org.slf4j.impl.NOPLogger NOPLogger} and
  * {@link org.slf4j.impl.SimpleLogger SimpleLogger} are also supported.
  * 
  * <p>
@@ -54,7 +49,7 @@
  * <p>
  * Please note that all methods in <code>LoggerFactory</code> are static.
  * 
- * @author <a href="http://www.qos.ch/log4j/">Ceki G&uuml;lc&uuml;</a>
+ * @author Ceki G&uuml;lc&uuml;
  */
 public final class LoggerFactory {
 

Modified: slf4j/trunk/src/java/org/slf4j/Marker.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/Marker.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/Marker.java	Mon Jan 23 14:40:27 2006
@@ -39,7 +39,7 @@
  * Markers are named objects used to enrich log statements. Conforming
  * logging system Implementations of SLF4J determine how information
  * conveyed by markers are used, if at all. In particular, many
- * conformant logging systems may ignore marker data.
+ * conforming logging systems ignore marker data.
  * 
  * <p>Markers can contain child markers, which in turn  can contain children 
  * of their own.
@@ -49,12 +49,12 @@
 public interface Marker {
  
   /**
-   * This constant symbolizes any marker, including a null marker.
+   * This constant represents any marker, including a null marker.
    */
   public static final String ANY_MARKER = "*";
   
   /**
-   * This constant symbolizes any non-null marker.
+   * This constant represents any non-null marker.
    */
   public static final String ANY_NON_NULL_MARKER = "+";
   

Modified: slf4j/trunk/src/java/org/slf4j/impl/SystemPropBinder.java
==============================================================================
--- slf4j/trunk/src/java/org/slf4j/impl/SystemPropBinder.java	(original)
+++ slf4j/trunk/src/java/org/slf4j/impl/SystemPropBinder.java	Mon Jan 23 14:40:27 2006
@@ -37,7 +37,7 @@
 
 /**
  * Allows for dynamic binding as specified by information contained in the
- * {@link Constants#LOGGER_FACTORY_PROPERTY} java system property.
+ * {@link #LOGGER_FACTORY_PROPERTY} java system property.
  * 
  * @author Ceki G&uuml;lc&uuml;
  */
@@ -45,7 +45,7 @@
 
   /**
    * The name of the system property to set in order to instruct
-   * {@link LoggerFactory} class to use a specific ILoggerFactory.
+   * {@link org.slf4j.LoggerFactory} class to use a specific ILoggerFactory.
    */
   final public static String LOGGER_FACTORY_PROPERTY = "org.slf4j.factory";
 
@@ -61,7 +61,6 @@
    * Fetch the appropriate ILoggerFactory as instructed by the system
    * properties.
    * 
-   * Constants.LOGGER_FACTORY_FACTORY_METHOD_NAME
    * 
    * @return The appropriate ILoggerFactory instance as directed from the system
    *         properties



More information about the slf4j-dev mailing list