What is your .NET logging framework of choice? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T16:39:07Zhttp://stackoverflow.com/feeds/question/126540http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice4What is your .NET logging framework of choice?RoyOsherove2008-09-24T11:13:09Z2009-12-02T01:12:04Z
<p>There are many Logging frameworks for .NET, from simple Debug.WriteLine and Trace to Log4Net, Logging application block, NLOg and others.
Which one do you use or recommend, and why?
Also, which one would you recommend to NOT use, and why?</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126541#1265419Answer by Omar Kooheji for What is your .NET logging framework of choice?Omar Kooheji2008-09-24T11:14:01Z2008-09-24T11:14:01Z<p>log4net, Although I've never really felt the need to use anything else...</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126550#1265503Answer by aku for What is your .NET logging framework of choice?aku2008-09-24T11:16:31Z2008-09-24T11:16:31Z<p><a href="http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-35-project">What is the best logging solution for a C# .NET 3.5 project</a></p>
<p><a href="http://stackoverflow.com/questions/118047/log4net-vs-enterprise-library-which-is-better-faster">log4net vs Enterprise Library, which is better? faster?</a></p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126551#1265515Answer by Geoff for What is your .NET logging framework of choice?Geoff2008-09-24T11:16:56Z2008-09-24T11:16:56Z<p>See this <a href="http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-35-project#98791">question</a>.</p>
<p>Log4Net is terrific. Very efficient, simple, configurable. Personally, I log to rolling appender files. </p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126552#1265520Answer by Viktor for What is your .NET logging framework of choice?Viktor2008-09-24T11:17:05Z2008-09-24T11:17:05Z<p>log4net,</p>
<p>It's easy to use, and you have different appenders for different situations, and you can easily switch between appenders and assign different namespaces/classes different appenders.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126559#1265591Answer by geekgawd for What is your .NET logging framework of choice?geekgawd2008-09-24T11:18:57Z2008-09-24T11:18:57Z<p>Microsoft Enterprise Library Logging Application Block is also an option. Although you would definitely want to use log4net for <a href="http://weblogs.asp.net/lorenh/archive/2005/02/18/376191.aspx" rel="nofollow">these reasons.</a></p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126567#1265671Answer by John Rudy for What is your .NET logging framework of choice?John Rudy2008-09-24T11:21:03Z2008-09-24T11:21:03Z<p>I'll be the lone dissenter. I'm a big fan of Enterprise Library, even though it is quite a PITA to get initially set up.</p>
<p>Truthfully, what I'm a fan of, or what the next guy's a fan of, it probably doesn't matter to other devs. What does matter is how quickly you can adapt to the logging framework you choose. There's nothing wrong with log4net, nor really with EntLib, but you need to adjust to it and be able to configure and use it as needed.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126574#1265740Answer by Erik van Brakel for What is your .NET logging framework of choice?Erik van Brakel2008-09-24T11:23:48Z2008-09-24T11:23:48Z<p>I use log4net, mainly because some major components I use also use them (NHibernate, to name one). That way I don't have to include multiple logging frameworks in my applications, and I can keep configuration in one file.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126615#1266150Answer by CSharpAtl for What is your .NET logging framework of choice?CSharpAtl2008-09-24T11:34:35Z2008-09-24T11:34:35Z<p>I used the built in logging in .NET using TraceSources, TraceSwitches. TraceListeners. It is easy to configure/override in the config file.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/126762#1267620Answer by pradeeptp for What is your .NET logging framework of choice?pradeeptp2008-09-24T12:17:41Z2008-09-24T12:17:41Z<p>Before using any loggers it is necessary to keep it mind how the application will be accessed by clients. If you are logging into a single file, keep in mind the sharing issue under multiple processess access. For eg. if the logger is used in a web service, make sure you test the logger under heavy load.</p>
<p>I have used Log4net, but it is not foolproof against unexpected filelocks.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/434463#4344633Answer by Andrei Rinea for What is your .NET logging framework of choice?Andrei Rinea2009-01-12T04:47:29Z2009-01-12T04:47:29Z<p>I have been happy with Log4Net for some time. <strong>HOWEVER</strong> I found bugs in the RollingFileAppender that cause some kind of a deadlock which hangs the IIS ( / webserver -not just IIS but Casinni also ) worker process.</p>
<p>Found <a href="http://www.mail-archive.com/log4net-dev@logging.apache.org/msg02137.html" rel="nofollow">the description of the bug</a>. There was no recent release since 2006 so it's kind of "dead" to me...</p>
<p>Therefore right now I need another logging framework. I am looking at the following options : </p>
<ul>
<li>Build my own (not really a pragmatic choice)</li>
<li>EntLib (Enterprise Library Logging Block)</li>
<li>NLog (just as dead as Log4Net - 2006 last release)</li>
<li><a href="http://www.theobjectguy.com/dotnetlog/" rel="nofollow">.NET Logging Framework</a></li>
</ul>
<p>I am still undecided and I will have to think this thoroughly...</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/499532#4995320Answer by Developer Dude for What is your .NET logging framework of choice?Developer Dude2009-01-31T20:47:34Z2009-01-31T20:47:34Z<p>Try <a href="http://www.theobjectguy.com/dotnetlog" rel="nofollow">The Object Guy's Logging Framework</a>. You won't be sorry.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/629830#6298300Answer by Tomas Pajonk for What is your .NET logging framework of choice?Tomas Pajonk2009-03-10T11:59:02Z2009-03-10T11:59:02Z<p><a href="http://www.theobjectguy.com/dotnetlog/" rel="nofollow">The Object Guy's Logging Framework</a> is very simple and easy to start with. There is one small glitch to it though, because it doesn't code to Interfaces (There is no IAmLogger interface) you may have to add your own interface to it if in use with IoC, Unit Testing and other practices. </p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/1258066#12580661Answer by S. Mills for What is your .NET logging framework of choice?S. Mills2009-08-11T01:30:33Z2009-08-11T01:30:33Z<p>Here's another vote for <a href="http://www.theobjectguy.com/dotnetlog" rel="nofollow">The Object Guy's Logging Framework</a>. We've been using it for years in all our production apps. Also, it doesn't have the file-locking problem that log4net has.</p>
http://stackoverflow.com/questions/126540/what-is-your-net-logging-framework-of-choice/1830075#18300750Answer by Statyk7 for What is your .NET logging framework of choice?Statyk72009-12-02T01:12:04Z2009-12-02T01:12:04Z<p>For those who are using log4net, I've made a simple console to display and filter the logs by configuring receivers (the same way you configure appenders).</p>
<p>I mainly use it with the .NET Remoting appender/receiver, both localy and remotely ; a lot of users are using it with the UDP appender/receiver also.</p>
<p>It's an open source tool developed in .NET, available on CodePlex: <a href="http://log2console.codeplex.com/" rel="nofollow">http://log2console.codeplex.com/</a></p>