vote up 0 vote down star

Right now, I'm programmatically configuring log4net by creating a RollingFileAppender instance then calling BasicConfigurator.Configure(). This is working great, but I'm trying to create two identical files - one in a timestamped directory that gets created for every run of the app, another in a static location to make it easy for a developer to tail the most current log. (this is only used for running automated tests, so creating a huge pile of directories is not a concern)

Ideally, I'd like the files to be completely identical, but I realize log4net might not make this possible. If they have different logger names, that's fine - as long as I can have one log statement write to both log files.

My current code:

IAppender appender = new RollingFileAppender
{
    ...
}

appender.ActivateOptions();

BasicConfigurator.Configure(appender);
flag
Why don't you just set up two appenders in the configuration file, then use a separate configuration file for your tests? – TrueWill Sep 12 at 16:49
@TrueWill: these tests get run using a stand-alone .exe, and also from Powershell cmdlets. The log4net section in the .config file doesn't get read when running from Powershell. Doing it programmatically allows us to use the same configuration in both scenarios. – Zack Elan Sep 12 at 17:00

1 Answer

vote up 1 vote down check

Although it's perfectly possible to do it completely Programmatically I don't feel like explaining the API here, it's easy enough to lookup.

By far the easiest and most flexiable way would be to configure two appenders read it from the config file. You can force this by calling upon log4net.Config.XmlConfigurator.Configure() and you can even pass in a XmlElement into Configure() if you want to keep it all in code.

link|flag
Building the XML programmatically then calling XmlConfigurator turned out to be much simpler. Thanks. – Zack Elan Sep 15 at 18:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.