DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=28044>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=28044 Patch, Avalon Logging to Commons Logging Conversion. ------- Additional Comments From [EMAIL PROTECTED] 2004-03-30 11:37 ------- Hi Glen I'm a bit surprised at the way you did the change. Like this I don't see any benefit over Avalon-style logging. You still have to pass a lot of loggers to several objects. This simply trades a 70KB JAR with a 30KB JAR for the same thing while Avalon still provides some additional features. I'd have expected you to make use of the "static" way to obtain a logger (as seen in Commons Digester for example): protected Log log = LogFactory.getLog("org.apache.commons.digester.Digester"); The logger is then configured externally. This makes life a lot easier for the FO tree (if you use a static variable) and for the PDF library, for example. See also: http://jakarta.apache.org/commons/logging/guide.html