/**
* Is <em>JDK 1.3 with Lumberjack</em> logging available?
*/
protected boolean isJdk13LumberjackAvailable() {
try {
loadClass("java.util.logging.Logger");
loadClass("org.apache.commons.logging.impl.Jdk13LumberjackLogger");
return (true);
} catch (Throwable t) {
return (false);
}
}In a pre 1.4 environment the line
loadClass("java.util.logging.Logger");
is going to throw an exception, isn't it? I mean all the Lumberjack classes are in the com.redstarhacker.lumberjack package.
On another note the version-numbers in build.xml and project.xml should be changed to 1.0.4 before the release.
-- Dennis Lundberg
Craig R. McClanahan wrote:
I've converted [logging] to the new Apache License 2.0, brought the documentation up to date with current changes, created provisional release notes for a 1.0.4 maintenance release, and applied the patch included with the last outstanding open bug report against [logging]. Please download tonight's (20040229) nightly build and help me test the new bits to make sure I didn't break anything along the way.
This is the last call for any issues you'd like to see addressed in a 1.0.4
maintenance release of [logging]. The best way to raise such issues is with
bug reports (or enhancement requests) in our issue tracking system
(http://issues.apache.org/bugzilla), or by posting comments and questions on
the COMMONS-DEV (or COMMONS-USER) mailing list
Barring the need for major changes, I'm planning on posting a release candidate for this release on Wednesday (March 3, 2004) and calling for a release vote on it shortly thereafter.
Craig McClanahan
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
