What logging tool do you use? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T04:06:30Z http://stackoverflow.com/feeds/question/136718 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use 2 What logging tool do you use? Ben L 2008-09-25T22:55:13Z 2008-09-26T00:02:19Z <p>I've recently been introduced to <a href="http://logging.apache.org/log4net/" rel="nofollow">log4net</a> for use with a .NET app; I've never used a third-party tool for logging before.</p> <p>What other logging tools do you use for which language and why?</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136736#136736 4 Answer by Damien B for What logging tool do you use? Damien B 2008-09-25T22:58:45Z 2008-09-25T22:58:45Z <p>Log4j for Java. Very versatile, almost no side effect, no performance impact, boatload of built-in outputs.</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136746#136746 1 Answer by Pablo Fernandez for What logging tool do you use? Pablo Fernandez 2008-09-25T23:00:25Z 2008-09-25T23:00:25Z <p>Log4J configured as an aspect via Spring. It's the log-killer :)</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136753#136753 1 Answer by Muxa for What logging tool do you use? Muxa 2008-09-25T23:01:31Z 2008-09-25T23:07:48Z <p>NLog. Customizable via .config file to log messages to SQL, console or file. Vefy flexible. Open source. <a href="http://www.codeproject.com/KB/trace/nlog.aspx?forumid=188721&amp;select=1139520&amp;df=100&amp;msg=1139520" rel="nofollow">Here's a nice article about it</a>. Similar to log4net.</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136767#136767 0 Answer by Jason Baker for What logging tool do you use? Jason Baker 2008-09-25T23:05:45Z 2008-09-25T23:05:45Z <p><a href="http://docs.python.org/lib/module-logging.html" rel="nofollow">python's built in logging module</a></p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136772#136772 1 Answer by David Nehme for What logging tool do you use? David Nehme 2008-09-25T23:07:44Z 2008-09-25T23:07:44Z <p>For c++, I've used Apache's <a href="http://logging.apache.org/log4cxx/" rel="nofollow">log4cxx</a>. 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.</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136806#136806 0 Answer by for What logging tool do you use? 2008-09-25T23:17:31Z 2008-09-25T23:17:31Z <p>Microsoft Enterprise Library Logging</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136904#136904 0 Answer by Odd for What logging tool do you use? Odd 2008-09-25T23:38:24Z 2008-09-25T23:38:24Z <p>I recently asked this question, <a href="http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-35-project">the results are here</a>. 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.</p> <p>If you're interested, my blog entry on the <a href="http://oddiandeveloper.blogspot.com/2008/09/microsoft-enterprise-library-1-logging.html" rel="nofollow">Logging Applicaiton Block is here</a>.</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136944#136944 0 Answer by Patrick Bundy for What logging tool do you use? Patrick Bundy 2008-09-25T23:47:07Z 2008-09-25T23:47:07Z <p>I looked into both the log4net and the Microsoft Logging Application Block <a href="http://msdn.microsoft.com/en-us/library/cc511708.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc511708.aspx</a>. 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.</p> http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/137010#137010 1 Answer by David Starr - Elegant Code for What logging tool do you use? David Starr - Elegant Code 2008-09-26T00:02:19Z 2008-09-26T00:02:19Z <p>Log4Net supports more formats these days with many community extensions. Not so much on the Logging Application Block.</p>