On Wed, 17 Sep 2003 [EMAIL PROTECTED] wrote: > Date: Wed, 17 Sep 2003 16:40:37 -0400 > From: [EMAIL PROTECTED] > Reply-To: Jakarta Commons Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: Commons-loggin and AsyncAppender > > That's exactly my point...the use of AsyncAppender requires an XML > formatted configuration file, not a java properties formatted configuration > file, and the commons-logging doesn't seem to work with such configuration > files. >
And you missed my point as well -- commons-logging has nothing to do with *configuration* of logging systems. It only abstracts the actual logging calls themselves. C-L doesn't read *any* Log4J configuration files itself. For Log4J, commons-logging just calls getLogger(String name) on the org.apache.log4j.Logger class. How that logger is configured is totally up to Log4J, not commons-logging. > Should I be posting this on the log4j mailing list? If it's a question of how to configure an AsyncAppender for Log4J, then yes that would be a good bet. All commons-logging knows about is the names of the loggers -- how they are configured is up to the underlying system. Craig > On Wed, 17 Sep 2003 [EMAIL PROTECTED] wrote: > > > Date: Wed, 17 Sep 2003 12:03:28 -0400 > > From: [EMAIL PROTECTED] > > Reply-To: Jakarta Commons Users List <[EMAIL PROTECTED]> > > To: [EMAIL PROTECTED] > > Subject: Commons-loggin and AsyncAppender > > > > I wish to use a log4j AsyncAppender behind the commons-logging facade. > The > > issue is that I know the use of AsyncAppenders requires an XML > > configuration file, and the DOMConfigurator to digest this config file. > Is > > this possible when using commons-logging? > > > > Sure. Commons-logging doesn't care how you configure the underlying > logging system (Log4J in your case). Just follow the standard Log4J > documentation on how to set this up. > > > Thanks. > > Craig > > --------------------------------------------------------------------- > 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] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
