Log4Net or Logging Application Block - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T18:35:18Zhttp://stackoverflow.com/feeds/question/263496http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263496/log4net-or-logging-application-block5Log4Net or Logging Application BlockRagoler2008-11-04T21:27:02Z2009-04-20T19:26:17Z
<p>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?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/263496/log4net-or-logging-application-block/263509#2635099Answer by Craig for Log4Net or Logging Application BlockCraig2008-11-04T21:30:28Z2008-11-04T21:30:28Z<p>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.</p>
http://stackoverflow.com/questions/263496/log4net-or-logging-application-block/263526#2635263Answer by jonathan.fenwick for Log4Net or Logging Application Blockjonathan.fenwick2008-11-04T21:34:47Z2008-11-04T21:34:47Z<p>My opinion ... Log4Net works, performs well and is stable (perhaps too stable given frequency of releases if you know what I mean). </p>
<p>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.</p>
<p>I think my preference is clear! Enterprise Library all the way. </p>
http://stackoverflow.com/questions/263496/log4net-or-logging-application-block/263570#2635705Answer by Rob Prouse for Log4Net or Logging Application BlockRob Prouse2008-11-04T21:44:25Z2008-11-04T21:44:25Z<p>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.</p>
<p>log4net has the following advantages;</p>
<ul>
<li>Fast and flexible</li>
<li>Hierarchical, named logging categories</li>
<li>Multiple logging levels</li>
<li>Output to multiple logging targets</li>
<li>Dynamic XML Configuration</li>
<li>Thread Safe</li>
<li>Format of logs is easily changed</li>
<li>Proven architecture (log4j)</li>
<li>Modular and extensible design</li>
<li>Support for multiple frameworks</li>
<li>A strong community behind it.</li>
</ul>
<p>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.</p>
http://stackoverflow.com/questions/263496/log4net-or-logging-application-block/263798#2637981Answer by Cohen for Log4Net or Logging Application BlockCohen2008-11-04T22:59:30Z2008-11-04T22:59:30Z<p>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.</p>
<p>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.</p>
<p>I am currently looking at nLog (heard some very nice things about it)</p>
http://stackoverflow.com/questions/263496/log4net-or-logging-application-block/769762#7697620Answer by YordanGeorgiev for Log4Net or Logging Application BlockYordanGeorgiev2009-04-20T19:26:17Z2009-04-20T19:26:17Z<p><a href="http://ysgitdiary.blogspot.com/2009/04/log4net-example-console-app.html" rel="nofollow">A simple example of log4net console app</a>
Bellow is the configuration file also </p>