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:

+ * the name of the implementation class to be loaded.

*