craigmcc 2002/11/22 19:07:58
Modified: logging/src/java/org/apache/commons/logging package.html
logging/src/java/org/apache/commons/logging/impl
LogFactoryImpl.java
Log:
Update remaining documentation that says the default Log implementation
is NoOpLog. It was changed to SimpleLog a while back.
PR: Bugzilla #14571
Submitted by: David M. Karr <[EMAIL PROTECTED]>
Revision Changes Path
1.7 +2 -2
jakarta-commons/logging/src/java/org/apache/commons/logging/package.html
Index: package.html
===================================================================
RCS file:
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/package.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- package.html 11 Mar 2002 22:40:19 -0000 1.6
+++ package.html 23 Nov 2002 03:07:58 -0000 1.7
@@ -131,8 +131,8 @@
<li>If the application is executing on a JDK 1.4 system, use
the corresponding wrapper class
(<a href="impl/Jdk14Logger.html">Jdk14Logger</a>).</li>
- <li>Fall back to the default no-output logging wrapper
- (<a href="impl/NoOpLog.html">NoOpLog</a>).</li>
+ <li>Fall back to the default simple logging wrapper
+ (<a href="impl/SimpleLog.html">SimpleLog</a>).</li>
</ul></li>
<li>Load the class of the specified name from the thread context class
loader (if any), or from the class loader that loaded the
1.19 +5 -5
jakarta-commons/logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
Index: LogFactoryImpl.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- LogFactoryImpl.java 11 Nov 2002 16:52:54 -0000 1.18
+++ LogFactoryImpl.java 23 Nov 2002 03:07:58 -0000 1.19
@@ -90,7 +90,7 @@
* <li>If <em>JDK 1.4 or later</em> is available, return an instance of
* <code>org.apache.commons.logging.impl.Jdk14Logger</code>.</li>
* <li>Otherwise, return an instance of
- * <code>org.apache.commons.logging.impl.NoOpLog</code>.</li>
+ * <code>org.apache.commons.logging.impl.SimpleLog</code>.</li>
* </ul>
*
* <p>If the selected {@link Log} implementation class has a
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>