I have an application consisting of a host and pluggable modules (plugins).
I want to be able to configure log4net for the host and for each of the other modules. Each of them should have its own configuration file and each will log to a different file.
Only the host has an App.config file. The plugins have their own config file containing the log4net config sections.
Calling XmlConfigurator.Configure from one of the plugins overrides the host's app.config log4net definitions.
Is there an easy way to append configurations instead of overriding them?
Thanks, Gai.