Anyone know of some performance comparisons of the latest version Enterprise Library and the latest version of log4net?
Any technical reason why I should choose one over the other?
|
Anyone know of some performance comparisons of the latest version Enterprise Library and the latest version of log4net? Any technical reason why I should choose one over the other? |
|||||
|
|
Log4Net is faster for one - not to mention that you can buffer your log INSERTs. For the logs I don't need to be real-time up to date, I set a buffer of 10k messages. Log4Net also has more ways to consume the log data - db appenders, event log, rolling file, email, etc, etc. |
|||||||||||
|
|
Having used both, I recommend the Enterprise Library for large projects where ease of configuration has higher priority over performance and size. For everything else, I'd use log4net. |
|||
|
|
|
I tested both recently this is my experience: Enterprise library came with so much overhead, I would only use it on a project with a large team. Log4Net Pros
Cons
Configuring Log4Net for Web Apps Enterprise Library Pros
Cons
|
||||
|
|
|
I'm asking myself the same question right now, and in looking at the docs for EntLib's logging, i see that it requires references to the following asssemblies (5): On the other hand, log4net requires these assembly references (1): So at least on first glance, log4net is much more lightweight. |
|||||||||
|
|
I used both entlib 3.1 and log4net. From my experience, I now only use log4net. Log4Net is much faster than Entlib and we had problems with IIS and Entlib (locking issues). |
|||
|
|
There is a comparison of logging frameworks for .NET, including both features and performance, at http://essentialdiagnostics.codeplex.com/wikipage?title=Comparison I have also blogged about it http://sgryphon.wordpress.com/2012/01/03/comparison-of-logging-frameworks/ Yes, these were done in the context of a .NET Framework System.Diagnostics based project, but I have tried to be as fair as possible. The source code for the performance comparison can be downloaded from the project if you want to test it yourself. In short:
Benefits of log4net:
Benefits of EntLib (over log4net). Note that most of these are also in .NET Framework System.Diagnostics.
The Service Trace Viewer XML format is probably the best rich format, as it allows correlation across tiers (but is also available in .NET Framework System.Diagnostics, so isn't a reason I would pick EntLib). My personal preference would be .NET Framework System.Diagnostics first, but then out of the two you asked about log4net over EntLib. |
|||
|
|