diff --git a/src/java/org/apache/commons/logging/Log.java b/src/java/org/apache/commons/logging/Log.java index b7c6f95..989a15b 100644 --- a/src/java/org/apache/commons/logging/Log.java +++ b/src/java/org/apache/commons/logging/Log.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/Log.java,v 1.12 2002/01/31 00:14:31 sanders Exp $ - * $Revision: 1.12 $ - * $Date: 2002/01/31 00:14:31 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/Log.java,v 1.13 2002/06/15 18:13:01 craigmcc Exp $ + * $Revision: 1.13 $ + * $Date: 2002/06/15 18:13:01 $ * * ==================================================================== * @@ -102,7 +102,7 @@ package org.apache.commons.logging; * * @author Scott Sanders * @author Rod Waldhoff - * @version $Id: Log.java,v 1.12 2002/01/31 00:14:31 sanders Exp $ + * @version $Id: Log.java,v 1.13 2002/06/15 18:13:01 craigmcc Exp $ */ public interface Log { @@ -174,7 +174,7 @@ public interface Log { /** - *
Log a message with trace log level
+ *Log a message with trace log level.
* * @param message log this message */ @@ -182,7 +182,7 @@ public interface Log { /** - *Log an error with trace log level
+ *Log an error with trace log level.
* * @param message log this message * @param t log this cause @@ -191,7 +191,7 @@ public interface Log { /** - *Log a message with debug log level
+ *Log a message with debug log level.
* * @param message log this message */ @@ -199,7 +199,7 @@ public interface Log { /** - *Log an error with debug log level
+ *Log an error with debug log level.
* * @param message log this message * @param t log this cause @@ -208,7 +208,7 @@ public interface Log { /** - *Log a message with info log level
+ *Log a message with info log level.
* * @param message log this message */ @@ -216,7 +216,7 @@ public interface Log { /** - *Log an error with info log level
+ *Log an error with info log level.
* * @param message log this message * @param t log this cause @@ -225,7 +225,7 @@ public interface Log { /** - *Log a message with warn log level
+ *Log a message with warn log level.
* * @param message log this message */ @@ -233,7 +233,7 @@ public interface Log { /** - *Log an error with warn log level
+ *Log an error with warn log level.
* * @param message log this message * @param t log this cause @@ -242,7 +242,7 @@ public interface Log { /** - *Log a message with error log level
+ *Log a message with error log level.
* * @param message log this message */ @@ -250,7 +250,7 @@ public interface Log { /** - *Log an error with error log level
+ *Log an error with error log level.
* * @param message log this message * @param t log this cause @@ -259,7 +259,7 @@ public interface Log { /** - *Log a message with fatal log level
+ *Log a message with fatal log level.
* * @param message log this message */ @@ -267,7 +267,7 @@ public interface Log { /** - *Log an error with fatal log level
+ *Log an error with fatal log level.
* * @param message log this message * @param t log this cause diff --git a/src/java/org/apache/commons/logging/LogFactory.java b/src/java/org/apache/commons/logging/LogFactory.java index 9179647..82cc5d0 100644 --- a/src/java/org/apache/commons/logging/LogFactory.java +++ b/src/java/org/apache/commons/logging/LogFactory.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.8 2002/06/11 22:29:14 rsitze Exp $ - * $Revision: 1.8 $ - * $Date: 2002/06/11 22:29:14 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.9 2002/06/15 18:13:01 craigmcc Exp $ + * $Revision: 1.9 $ + * $Date: 2002/06/15 18:13:01 $ * * ==================================================================== * @@ -85,7 +85,7 @@ import java.lang.SecurityException; * * @author Craig R. McClanahan * @author Costin Manolache - * @version $Revision: 1.8 $ $Date: 2002/06/11 22:29:14 $ + * @version $Revision: 1.9 $ $Date: 2002/06/15 18:13:01 $ */ public abstract class LogFactory { @@ -234,7 +234,7 @@ public abstract class LogFactory { /** *Construct (if necessary) and return a LogFactory
* instance, using the following ordered lookup procedure to determine
- * the name of the implementation class to be loaded:
org.apache.commons.logging.LogFactory system
* property.* The specific {@link Log} implementation returned * is determined by the value of the @@ -268,11 +268,11 @@ public class LogSource { *
* When org.apache.commons.logging.log is not set, * or when no corresponding class can be found, - * this method will return a {@link Log4JCategoryLog} - * if the log4j {@link org.apache.log4j.Category} class is + * this method will return a Log4JCategoryLog + * if the log4j Category class is * available in the {@link LogSource}'s classpath, or a - * {@link Jdk14Logger} if we are on a JDK 1.4 or later system, or - * a {@link NoOpLog} if neither of the above conditions is true. + * Jdk14Logger if we are on a JDK 1.4 or later system, or + * NoOpLog if neither of the above conditions is true. * * @param name the log name (or category) */ diff --git a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java index 2458b14..269b90a 100644 --- a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v 1.11 2002/06/11 22:47:21 rsitze Exp $ - * $Revision: 1.11 $ - * $Date: 2002/06/11 22:47:21 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v 1.12 2002/06/15 18:13:02 craigmcc Exp $ + * $Revision: 1.12 $ + * $Date: 2002/06/15 18:13:02 $ * * ==================================================================== * @@ -76,7 +76,7 @@ import org.apache.commons.logging.LogSource; /** *
Concrete subclass of {@link LogFactory} that implements the * following algorithm to dynamically select a logging implementation - * class to instantiate a wrapper for:
+ * class to instantiate a wrapper for. *org.apache.commons.logging.Log to identify the
@@ -104,7 +104,7 @@ import org.apache.commons.logging.LogSource;
*
* @author Rod Waldhoff
* @author Craig R. McClanahan
- * @version $Revision: 1.11 $ $Date: 2002/06/11 22:47:21 $
+ * @version $Revision: 1.12 $ $Date: 2002/06/15 18:13:02 $
*/
public class LogFactoryImpl extends LogFactory {
@@ -530,4 +530,4 @@ public class LogFactoryImpl extends LogFactory {
}
}
-}
\ No newline at end of file
+}