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?
|
3
|
|
|
|
|
|
log4net, Although I've never really felt the need to use anything else... |
||
|
|
|
See this question. Log4Net is terrific. Very efficient, simple, configurable. Personally, I log to rolling appender files. |
||
|
|
|
|
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 :
I am still undecided and I will have to think this thoroughly... |
||
|
|
|
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. |
||
|
|
Microsoft Enterprise Library Logging Application Block is also an option. Although you would definitely want to use log4net for these reasons. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
I used the built in logging in .NET using TraceSources, TraceSwitches. TraceListeners. It is easy to configure/override in the config file. |
||
|
|
|
|
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. |
||
|
|
|
|
Try The Object Guy's Logging Framework. You won't be sorry. |
||
|
|
|
|
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. |
||
|
|
|
|
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/ |
||
|
|
