vote up 4 vote down star
3

Anyone have experience for both? How do they stack up against each other?

We are planning on using one of them for logging in an enterprise application.

References:

log4net

nlog

EDIT: We have no existing dependencies to either nlog or log4net.

flag

76% accept rate

6 Answers

vote up 5 vote down

First look at the rest of your stack.

If you are using NHibernate, it utilizes Log4Net directly. Other frameworks might have other specific loggers they need.

Other than that: both work fine.

I've settled on Log4Net myself. It can be a pain to configure, and if it isn't configured correctly it is a pain to figure out what went wrong. But you can make it do almost anything you would want from a logger.

If you don't have a standing issue with Log4Net, here is an article I wrote on how to get started with it: http://elegantcode.com/2007/12/07/getting-started-with-log4net/

link|flag
thanks for the info Chris. We have no existing dependencies to either. – Greg Dean Apr 2 at 18:05
vote up 1 vote down

For us, the key difference is in overall perf...

Have a look at Logger.IsDebugEnabled in NLog versus Log4Net, from our tests, NLog has less overhead and that's what we are after (low-latency stuff).

Cheers, Florian

link|flag
vote up 0 vote down

You might also consider Microsoft Enterprise Library Logging Block. It comes with nice designer.

link|flag
vote up 0 vote down

I think the general consensus is that nlog is a bit easier to configure and use. Both are quite capable, though.

link|flag
vote up 0 vote down

I have the same question, but I choice the NHibernate, so my first choice is log4net, just beginning.

I notice the NLog seem simplier than log4net, i wander what is the continue ?

link|flag
vote up 0 vote down

As I noticed, log4net locks their output files the whole time application is running, so you can't delete them. Otherwise they are similar.

So I prefer NLog.

link|flag

Your Answer

Get an OpenID
or

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