vote up 5 vote down star
3

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?

flag

14 Answers

vote up 9 vote down

log4net, Although I've never really felt the need to use anything else...

link|flag
-1 for the subjective factor Err, I'm not respected enough to -1 – nomad311 Dec 13 at 0:58
vote up 5 vote down

See this question.

Log4Net is terrific. Very efficient, simple, configurable. Personally, I log to rolling appender files.

link|flag
vote up 0 vote down

log4net,

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.

link|flag
vote up 1 vote down

Microsoft Enterprise Library Logging Application Block is also an option. Although you would definitely want to use log4net for these reasons.

link|flag
vote up 2 vote down

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.

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.

link|flag
+1 for being the lone dissenter! – Walter Dec 2 at 13:36
1  
Rather +1 for the objective factor – nomad311 Dec 13 at 0:58
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I used the built in logging in .NET using TraceSources, TraceSwitches. TraceListeners. It is easy to configure/override in the config file.

link|flag
vote up 0 vote down

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.

I have used Log4net, but it is not foolproof against unexpected filelocks.

link|flag
vote up 3 vote down

I have been happy with Log4Net for some time. HOWEVER 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.

Found the description of the bug. There was no recent release since 2006 so it's kind of "dead" to me...

Therefore right now I need another logging framework. I am looking at the following options :

  • Build my own (not really a pragmatic choice)
  • EntLib (Enterprise Library Logging Block)
  • NLog (just as dead as Log4Net - 2006 last release)
  • .NET Logging Framework

I am still undecided and I will have to think this thoroughly...

link|flag
After pondering the above possibilities I've decided to write my own logging library simillar to the Log4Net one but hopefully without internal deadlocks :P – Andrei Rinea Jan 15 '09 at 9:19
vote up 0 vote down

Try The Object Guy's Logging Framework. You won't be sorry.

link|flag
vote up 0 vote down

The Object Guy's Logging Framework 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.

link|flag
vote up 1 vote down

Here's another vote for The Object Guy's Logging Framework. We've been using it for years in all our production apps. Also, it doesn't have the file-locking problem that log4net has.

link|flag
vote up 0 vote down

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

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.

It's an open source tool developed in .NET, available on CodePlex: http://log2console.codeplex.com/

link|flag

Your Answer

Get an OpenID
or

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