up vote 2 down vote favorite
share [g+] share [fb]

I've recently been introduced to log4net for use with a .NET app; I've never used a third-party tool for logging before.

What other logging tools do you use for which language and why?

link|improve this question

79% accept rate
feedback

9 Answers

Log4j for Java. Very versatile, almost no side effect, no performance impact, boatload of built-in outputs.

link|improve this answer
feedback

Log4J configured as an aspect via Spring. It's the log-killer :)

link|improve this answer
feedback

For c++, I've used Apache's log4cxx. It works and has a liberal license. One issue, the current Debian package (liblog4cxx9-dev) is 0.9.0, but the latest version is 0.10 and the API has changed a bit.

link|improve this answer
feedback

NLog. Customizable via .config file to log messages to SQL, console or file. Vefy flexible. Open source. Here's a nice article about it. Similar to log4net.

link|improve this answer
feedback

Log4Net supports more formats these days with many community extensions. Not so much on the Logging Application Block.

link|improve this answer
feedback

python's built in logging module

link|improve this answer
feedback

Microsoft Enterprise Library Logging

link|improve this answer
feedback

I recently asked this question, the results are here. Also in the process of testing the enterprise library I stuck up a blog entry recording how I did it. In the end the other aspects of the enterprise library were very well integrated into logging and I chose to go forth with the enterprise library, though I'm still evaluating some aspects of it.

If you're interested, my blog entry on the Logging Applicaiton Block is here.

link|improve this answer
feedback

I looked into both the log4net and the Microsoft Logging Application Block http://msdn.microsoft.com/en-us/library/cc511708.aspx. In the end I went with the Logging Application Block as it can log in more formats out of the box. However log4net is slightly faster unless you are logging heavily and performance is critical you will not notice any difference in a real world application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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