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:
EDIT: We have no existing dependencies to either nlog or log4net.
|
3
|
|
|
|
|
|
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/ |
|||
|
|
|
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 |
||
|
|
|
|
You might also consider Microsoft Enterprise Library Logging Block. It comes with nice designer. |
||
|
|
|
|
I think the general consensus is that nlog is a bit easier to configure and use. Both are quite capable, though. |
||
|
|
|
|
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 ? |
||
|
|
|
|
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. |
||
|
|