Tracing versus Logging and how does log4net fit in? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:10:40Z http://stackoverflow.com/feeds/question/172372 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in 3 Tracing versus Logging and how does log4net fit in? Xerx 2008-10-05T18:07:39Z 2008-10-06T10:07:21Z <p>I am wondering about what the difference between logging and tracing is.</p> <p>Is the difference basically that tracing is more detailed log giving developers a tool to debug applications at runtime?</p> <p>I have been experimenting with log4net and doing logging. Now I am wondering if I should be doing tracing as well and if I could/should use log4net for that purpose. Should I be doing tracing with log4net and is there some trace level for log4net loggers? Should I use a different log level for debug and trace purposes or is it ok to use the same? Can you give a simple example on how I would do logging and tracing for a simple method?</p> <p>Edit: Despite a few helpful answers below I am still unsure how I should be doing tracing versus logging. </p> <p>I have the following method in my Business layer and I want to add logging/tracing to it. I am wondering how to do it efficiently. Is the following method acceptable in terms of logging/tracing? Should the log messages be of type Info instead of Debug? Are the Debug messages I am logging considered trace? How would you change it?</p> <pre> <code> IEnumerable&lt;Car&gt; GetCars() { try { logger.Debug("Getting cars"); IEnumerable&lt;Car&gt; cars = CarAccessor.GetCars().ConvertAll(DataAccessToBusinessConverter); logger.Debug("Got total of " + cars.Count + " cars"); } catch (Exception e) { logger.Error("Error when getting cars", e); throw new Exception("Unexpected error when getting cars"); } } </code> </pre> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172375#172375 1 Answer by kineas for Tracing versus Logging and how does log4net fit in? kineas 2008-10-05T18:10:27Z 2008-10-05T18:10:27Z <p>logging != debugging</p> <p>Sometimes keeping log files is necessary to solve issues with the client, they prove what happened on the server side.</p> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172399#172399 0 Answer by gbjbaanb for Tracing versus Logging and how does log4net fit in? gbjbaanb 2008-10-05T18:26:26Z 2008-10-05T18:26:26Z <p>I'd say yes. Logging is the only way to determine what happened in the past - if a customer calls and says something didn't happen as expected, without a log all you can do is shrug and try and reproduce the error. Sometimes that is impossible (depending on the complexity of the software and the reliance on customer data).</p> <p>There is also the question of logging for auditing, a log file can be written containing information on what the user is doing - so you can use that to narrow down the possibilities to debug a problem, or even to verify the user's claims (if you get a report that the system is broken, xyz didn't happen, you can look in the logs to find out the operator failed to start the process, or didn't click the right option to make it work)</p> <p>Then there's logging for reporting, which is what most people think logging is for.</p> <p>If you can tailor the log output then put everything in logs and reduce or increase the amount of data that gets written. If you can change the output level dynamically then that's perfect.</p> <p>You can use any means of writing logs, subject to performance issues. I find appending to a text file is the best, most portable, easiest to view, and (very importantly) easiest to retrieve when you need it.</p> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172488#172488 2 Answer by Bob Nadler for Tracing versus Logging and how does log4net fit in? Bob Nadler 2008-10-05T19:18:24Z 2008-10-05T19:18:24Z <p>log4net is well suited for both. We differentiate between logging that's useful for post-release diagnostics and "tracing" for development purposes by using the DEBUG logging level. Specifically, developers log their tracing output (things that are only of interest during development) using <code>Debug()</code>. Our development configuration sets the Level to DEBUG:</p> <pre><code>&lt;root&gt; &lt;level value="DEBUG" /&gt; ... &lt;/root&gt; </code></pre> <p>Before the product is released, the level is changed to "INFO":</p> <pre><code>&lt;level value="INFO" /&gt; </code></pre> <p>This removes all DEBUG output from the release logging but keeps INFO/WARN/ERROR.</p> <p>There are other log4net tools, like filters, hierarchical (by namespace) logging, multiple targets, etc., by we've found the above simple method quite effective.</p> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172503#172503 1 Answer by Kevin Little for Tracing versus Logging and how does log4net fit in? Kevin Little 2008-10-05T19:33:23Z 2008-10-05T19:33:23Z <p>IMO...<br><br>Logging should <strong>not</strong> be designed for development debugging (but it inevitably gets used that way)<br> Logging should be designed for <em>operational</em> monitoring and trouble-shooting -- this is its raison d’être.<br><br> Tracing should be designed for development debugging &amp; performance tuning. If available in the field, it can be use for really low-level operational trouble-shooting, but that is not its main purpose<br><br>Given this, the most successful approaches I've seen (and designed/implemented) in the past do <em>not</em> combine the two together. Better to keep the two tools separate, each doing one job as well as possible.</p> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172525#172525 1 Answer by martin for Tracing versus Logging and how does log4net fit in? martin 2008-10-05T19:45:39Z 2008-10-05T19:45:39Z <p>Logging is the generic term for recording information- tracing is the specific form of logging used to debug.</p> <p>In .Net the System.Diagnostics.Trace and System.Diagnostics.Debug objects allow simple logging to a number of "event listeners" that you can configure in app.config. You can also use TraceSwitches to configure and filter (between errors and info levels, for instance).</p> <pre><code>private void TestMethod(string x) { if(x.Length&gt; 10) { Trace.Write("String was " + x.Length); throw new ArgumentException("String too long"); } } </code></pre> <p>In ASP.Net, there is a special version of Trace (System.Web.TraceContext) will writes to the bottom of the asp page or Trace.axd. In ASP.Net 2+, there is also a fuller logging framework called Health Monitoring.</p> <p>Log4Net is a richer and more flexible way of tracing or logging than the in-built Trace, or even ASP Health Monitoring. Like Diagnostics.Trace you configure event listeners ("appenders") in config. For simple tracing, the use is simple like the inbuilt Trace. The decision to use Log4Net is whether you have more complicated requirements.</p> <pre><code>private void TestMethod(string x) { Log.Info("String length is " + x.Length); if(x.Length&gt; 10) { Log.Error("String was " + x.Length); throw new ArgumentException("String too long"); } } </code></pre> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/173303#173303 0 Answer by Christian.K for Tracing versus Logging and how does log4net fit in? Christian.K 2008-10-06T06:07:40Z 2008-10-06T06:07:40Z <p>Also, consider what information is logged or traced. This is especially true for senstive information.</p> <p>For example, while it may be generally OK to log an error stating </p> <p>"User 'X' attempted to access but was rejected because of a wrong password", </p> <p>it is not OK to log an error stating </p> <p>"User 'X' attempted to access but was rejected because the password 'secret' is not correct."</p> <p>It <em>might</em> be acceptable to write such senstive information to a trace file (and warn the customer/user about that fact by "some means" before you ask him to enable trace for extended troubleshooting in production). However for logging, I always have it as a policy that such senstive information is <strong>never</strong> to be written (i.e. levels INFO and above in log4net speak).</p> <p>This must be enforced and checked by code reviews, of course.</p>