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.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I was recently tasked to "prototype up some loggin'" for an upcoming project. I didn't have any logging framework experience. I researched, ran through tutorials, made toy apps, etc. on Log4Net, NLog, and Enterprise Library for a few days. Came back 3-4 weeks later and put them together into a cohesive demo. Hopefully some of this is useful to you. My recommendation for our project is this:
That's based on these findings (opinions!):
So obviously I like NLog so far. Not enough to use it in spite of having another solution available, though. |
|||||||||||||||||||||
|
|
A key consideration that hasn't been much discussed is support and updates. Log4Net hasn't been updated since version 1.2.10 was published April 19, 2006. In contrast, NLog has been actively supported since 2006 will soon release NLog 2.0 supporting many platforms that didn't exist when log4net was last updated such as:
|
|||||||||||||||||||||
|
|
Having had an experience with both frameworks recently, I thought I can share my views on each frameworks. I was asked to evaluate the logging frameworks for an existing web application, I narrowed down my choices to NLog (v2.0) and log4net (v1.2.11) after going through various online forums. Here are my findings:
It was sufficient comparison for me to choose NLog as the logging framework. :) |
|||||||||
|
|
For anyone getting to this thread late, you may want to take a look back at the .Net Base Class Library (BCL). Many people missed the changes between .Net 1.1 and .Net 2.0 when the TraceSource class was introduced (circa 2005). Using the TraceSource is analagous to other logging frameworks, with granular control of logging, configuration in app.config/web.config, and programmatic access - without the overhead of the enterprise application block.
There are also a number of comparisons floating around: "log4net vs TraceSource" |
|||||||
|
|
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 Cheers, Florian |
||||
|
|
|
Well .. I used Enterprise library for database logging tasks and now I switched to NLog due to performance bottleneck. some comparison info : http://pauliusraila.blogspot.com/2010/10/solving-database-logging-bottlenecks.html |
|||
|
|
|
I echo the above and do prefer nLog. Entlib is needlessly bloated. Re:Log4net One thing that ALWAYS gets me with log4net is forgetting to add the following to the global.asax to init the component:
|
|||||
|
|
If you go here you can find a comprehensive matrix that includes both the NLog and Log4Net libs as well as Enterprise Lib and other products. Somebody could argue that the matrix is done in a way to underline the features of the only commercial lib present in the matrix. I think it's true but it was useful anyway to drive my choice versus NLog. Regards |
|||||
|
|
I second NLog too because it works with unmanaged code too. I suppose it could be possibe to use log4net and log4cxx together, but NLog handles both managed and unmanaged code out of the box. I also looked at Common.Logging, a facade that makes abstraction of the logging api, it supports log4net, NLog and Entreprise Library. I don't think i'll use it, but i like how they use lambdas to improve performance when logging is disabled. |
|||
|
|
|
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. |
|||||
|
|
I think the general consensus is that nlog is a bit easier to configure and use. Both are quite capable, though. |
|||
|
|
|
You might also consider Microsoft Enterprise Library Logging Block. It comes with nice designer. |
|||||||||||||||||||
|