vote up 5 vote down star
1

I need a logging framework in my application. I have two candidates: Log4Net and Logging from Application Block. Which is better? any specific advantage to any of them?

Thanks

flag

45% accept rate

5 Answers

vote up 3 vote down check

My opinion ... Log4Net works, performs well and is stable (perhaps too stable given frequency of releases if you know what I mean).

If you need logging it is highly unlikely that you don't need other functionality exposed by Enterprise Library, you'd be on the Microsoft road map, benefit from regular updates, have tool support (e.g. configuration tool) and there is always the much maligned documentation which is far superior than you will get with Open Source.

I think my preference is clear! Enterprise Library all the way.

link|flag
vote up 9 vote down

I have found Log4Net to be simpler to setup and use. The problem with Enterprise Library application blocks is they tend to include everything and the kitchen sink and can make something seemingly simple (like logging) into something really complicated. Also because Log4Net is used with nHibernate which I also use then I already have it there ready to go.

link|flag
vote up 5 vote down

I would go for log4net unless you are already using Enterprise Library for other functionality. I find Enterprise Library to be a bit heavy weight and takes a bit more code to actually do the logging.

log4net has the following advantages;

  • Fast and flexible
  • Hierarchical, named logging categories
  • Multiple logging levels
  • Output to multiple logging targets
  • Dynamic XML Configuration
  • Thread Safe
  • Format of logs is easily changed
  • Proven architecture (log4j)
  • Modular and extensible design
  • Support for multiple frameworks
  • A strong community behind it.

I have been using log4net for a few years now and whenever I need to do something out of the box, I am surprise how easy it ends up being.

link|flag
When you say "log4net hes the following advantages", does that mean, that Enterprise Library does not support all of these features? – Martin Apr 20 at 19:31
vote up 1 vote down

Log 4 net is nice: great features, but it takes some time and effort to master the configuration especially when the default outputs do not suffice and you need to extend it.

Enterprise Library is heavy weight, not sure where they are going (there have been some breaking changes between releases especially in the DAB). So I personally stay away from it.

I am currently looking at nLog (heard some very nice things about it)

link|flag
vote up 0 vote down

A simple example of log4net console app Bellow is the configuration file also

link|flag

Your Answer

Get an OpenID
or

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