up vote 20 down vote favorite
9
share [g+] share [fb]

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?

link|improve this question

feedback

5 Answers

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.

link|improve this answer
3  
Enterprise Library has all those mechanism as well. I'm not sure if it has the buffering though. – spoon16 Sep 24 '08 at 4:12
EL's rolling file listener does not support purging OOTB: worldolio.com/derek/wordpress/?p=149 – frankadelic Sep 13 '10 at 22:08
1  
Note the statement about perf is made based on the old version of EntLib (likely v3). The Logging Application Block performance has been significantly improved in v4 and further in v5. In some test scenarios the Logging Block was outperforming log4net. I suggest you first set your perf objectives. then do you own perf tests of each and see whether they meet your perf objectives. – Grigori Melnik Jan 21 at 4:45
feedback

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):
--Microsoft.Practices.Unity.dll
--Microsoft.Practices.Unity.Interception.dll
--Microsoft.Practices.ServiceLocation.dll
--Microsoft.Practices.EnterpriseLibrary.Common.dll
--Microsoft.Practices.EnterpriseLibrary.Logging.dll

On the other hand, log4net requires these assembly references (1):
--log4net.dll

So at least on first glance, log4net is much more lightweight.

link|improve this answer
3  
Agreed. It seems all the MS Practices stuff is a bloated bag of bollocks. – Noldorin Jul 16 '11 at 13:53
feedback

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.

link|improve this answer
feedback

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).

link|improve this answer
feedback

I would go for log4net

link|improve this answer
28  
I can tell you spent a lot of time on this answer. Unfortunately it still earns you a down vote. – spoon16 Sep 24 '08 at 4:12
As a neophyte - why the downvotes for this answer? – Thorbjørn Ravn Andersen Aug 31 '10 at 6:52
1  
@Thorbjørn: I have to assume because of the lack of explanation as to why. – kdawg Mar 21 '11 at 19:32
2  
At the very least you could've included a period at the end of your sentence. – Repo Man Jul 21 '11 at 20:36
Why would you waste a downvote? It's blatantly a useless answer anyway, and not likely to lead anyone astray. – Winston Smith Sep 26 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

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