diff --git a/src/java/org/apache/commons/logging/Log.java b/src/java/org/apache/commons/logging/Log.java index 21691b1..93ff184 100644 --- a/src/java/org/apache/commons/logging/Log.java +++ b/src/java/org/apache/commons/logging/Log.java @@ -57,7 +57,7 @@ package org.apache.commons.logging; * * @author Scott Sanders * @author Rod Waldhoff - * @version $Id: Log.java,v 1.18 2004/02/28 21:46:45 craigmcc Exp $ + * @version $Id: Log.java,v 1.19 2004/06/06 21:16:04 rdonkin Exp $ */ public interface Log { @@ -116,7 +116,7 @@ public interface Log { /** - *
Is warning logging currently enabled?
+ *Is warn logging currently enabled?
* * Call this method to prevent having to perform expensive operations
* (for example, String concatenation)
diff --git a/src/java/org/apache/commons/logging/LogFactory.java b/src/java/org/apache/commons/logging/LogFactory.java
index ac89e2d..b33f1b4 100644
--- a/src/java/org/apache/commons/logging/LogFactory.java
+++ b/src/java/org/apache/commons/logging/LogFactory.java
@@ -42,7 +42,7 @@ import java.util.Properties;
* @author Craig R. McClanahan
* @author Costin Manolache
* @author Richard A. Sitze
- * @version $Revision: 1.26 $ $Date: 2004/02/28 21:46:45 $
+ * @version $Revision: 1.27 $ $Date: 2004/06/06 21:15:12 $
*/
public abstract class LogFactory {
@@ -72,8 +72,9 @@ public abstract class LogFactory {
"commons-logging.properties";
/**
- * JDK1.3+ 'Service Provider' specification
- * ( http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html )
+ * JDK1.3+
+ * 'Service Provider' specification.
+ *
*/
protected static final String SERVICE_ID =
"META-INF/services/org.apache.commons.logging.LogFactory";
diff --git a/src/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java b/src/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java
index 42f8ded..1858671 100644
--- a/src/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java
+++ b/src/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java
@@ -31,14 +31,14 @@ import org.apache.commons.logging.Log;
/**
*
Implementation of the org.apache.commons.logging.Log
- * interfaces that wraps the standard JDK logging mechanisms that are
+ * interface that wraps the standard JDK logging mechanisms that are
* available in SourceForge's Lumberjack for JDKs prior to 1.4.
Implementation of the org.apache.commons.logging.Log
- * interfaces that wraps the standard JDK logging mechanisms that were
+ * interface that wraps the standard JDK logging mechanisms that were
* introduced in the Merlin release (JDK 1.4).
java.util.logging.Logger instance.Logger.Log instance.Log instance must be created, the default
LogFactory implementation uses the following discovery
- process is used:
+ process:
org.apache.commons.logging.Log (for backwards
@@ -198,8 +198,9 @@ component, consists of the following steps:
purposes. A typical scenario for a server application is to have each
major component of the server use its own Log instance.debug(), info(),
- warn(), error, and fatal()).trace(), debug(),
+ info(), warn(), error, and
+ fatal()).For convenience, LogFactory also offers a static method