JoranConfigurator.configure(filename)
to
JoranConfigurator config = new JoranConfigurator(); config.doConfigure(filename); List errors = config.getErrorList();
Mark Womack's recent commits suggest that this is being extended to the other configurators.
Making the configurator's hold on to the error list seems like a bad idea. It would be much cleaner to keep the configurator's stateless by allowing the user to pass in a List to receive configuration errors if they desire them or null if they don't care.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
