vote up 0 vote down star

In my current project I'm using two libraries where one is using log4net and the other NLog for its logging. I'm personally prefer NLog so it is used in my application as well.

I'm not knowing much about log4net so I'm asking what would be the best way to programmatically forward all the messages from log4net to NLog.

There is a post about a log4net forwarder at the NLog forum but it looks like no one had done this before.

flag

I would drop NLog altogether. It was advertised as a better alternative, but its creator stopped working on it after being hired by Microsoft, which is a shame.. I started using log4net later on and I like it more, maybe take a look the documentation and see for yourself. – Pawel Krakowiak Feb 25 at 15:38
Thanks for the hint ... I will consider to use log4net for my application instead – mutzel Feb 25 at 17:18

2 Answers

vote up 1 vote down check

create a custom log4net Appender that logs the messages to a nlog logger. this may be at least the solution if you just want to pass the log information to nlog instead of replacing all occurences of log4net logging with nlog.

look here, here and here

link|flag
vote up 0 vote down

Basically you'll need a log4net appender (log4net.Appender.IAppender) which would delegate all DoAppend calls to NLogs' Logger or Target.

link|flag

Your Answer

Get an OpenID
or

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