What logging tool do you use? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T04:06:30Zhttp://stackoverflow.com/feeds/question/136718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/136718/what-logging-tool-do-you-use2What logging tool do you use?Ben L2008-09-25T22:55:13Z2008-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#1367364Answer by Damien B for What logging tool do you use?Damien B2008-09-25T22:58:45Z2008-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#1367461Answer by Pablo Fernandez for What logging tool do you use?Pablo Fernandez2008-09-25T23:00:25Z2008-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#1367531Answer by Muxa for What logging tool do you use?Muxa2008-09-25T23:01:31Z2008-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&select=1139520&df=100&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#1367670Answer by Jason Baker for What logging tool do you use?Jason Baker2008-09-25T23:05:45Z2008-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#1367721Answer by David Nehme for What logging tool do you use?David Nehme2008-09-25T23:07:44Z2008-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#1368060Answer by for What logging tool do you use?2008-09-25T23:17:31Z2008-09-25T23:17:31Z<p>Microsoft Enterprise Library Logging</p>
http://stackoverflow.com/questions/136718/what-logging-tool-do-you-use/136904#1369040Answer by Odd for What logging tool do you use?Odd2008-09-25T23:38:24Z2008-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#1369440Answer by Patrick Bundy for What logging tool do you use?Patrick Bundy2008-09-25T23:47:07Z2008-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#1370101Answer by David Starr - Elegant Code for What logging tool do you use?David Starr - Elegant Code2008-09-26T00:02:19Z2008-09-26T00:02:19Z<p>Log4Net supports more formats these days with many community extensions. Not so much on the Logging Application Block.</p>