Trace vs Debug in .NET BCL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:56:22Z http://stackoverflow.com/feeds/question/179868 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl 4 Trace vs Debug in .NET BCL Ben Collins 2008-10-07T19:00:50Z 2009-05-30T13:50:15Z <p>It seems that the System.Diagnostics.Debug and System.Diagnostics.Trace are largely the same, with the notable exception that Debug usage is compiled out in a release configuration. When would you use one and not the other? The only answer to this I've dug up so far is just that you use the Debug class to generate output that you only see in debug configuration, and Trace will remain in a release configuration, but that doesn't really answer the question in my head.</p> <p>If you're going to instrument your code, why would you ever use Debug, since Trace can be turned off without a recompile?</p> http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl/179878#179878 2 Answer by Michael Burr for Trace vs Debug in .NET BCL Michael Burr 2008-10-07T19:04:08Z 2008-10-07T19:04:08Z <p>I'd look at using log4net for tracing as it's capabilities are much more flexible and robust.</p> <p>But for true debug messages that I never intend for anyone other than me or an internal tester to see, I'd probably stick with Debug.</p> http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl/179884#179884 4 Answer by Jared for Trace vs Debug in .NET BCL Jared 2008-10-07T19:07:01Z 2008-10-07T19:07:01Z <p>The main difference is the one you indicate: Debug is not included in release, while Trace is.</p> <p>The intended difference, as I understand it, is that development teams might use Debug to emit rich, descriptive messages that might prove too detailed (or revealing) for the consumer(s) of a product, while Trace is intended to emit the kinds of messages that are more specifically geared toward instrumenting an application.</p> <p>To answer your last question, I can't think of a reason to use Debug to instrument a piece of code I intended to release.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl/179886#179886 1 Answer by Cory Foy for Trace vs Debug in .NET BCL Cory Foy 2008-10-07T19:07:32Z 2008-10-07T19:07:32Z <p>You've answered your own question. If Debug messages stayed in, people could see them. For example, let's say you do:</p> <pre> Debug.WriteLine("Connecting to DB with username: blah and PW: pass"); </pre> <p>Anyone who decompiles your code can see that. But that may be something vitally important for you to know during testing. </p> <p>Trace is different. If you are going to do Trace, I'd likely just use log4net. </p> http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl/179889#179889 2 Answer by Kevin Dente for Trace vs Debug in .NET BCL Kevin Dente 2008-10-07T19:08:05Z 2008-10-07T19:08:05Z <p>For highly performance sensitive code blocks, leaving Trace compiled-in but disabled might make a performance difference. </p> http://stackoverflow.com/questions/179868/trace-vs-debug-in-net-bcl/929755#929755 1 Answer by sandy101 for Trace vs Debug in .NET BCL sandy101 2009-05-30T13:50:15Z 2009-05-30T13:50:15Z <p>The only difference between trace and debug is that trace statement are included by default in the program when it is compiled into a release build, whereas debug statement are not. Thus , the debug class is principally used for debugging in the development phase ,while trace can be used for <strong>testing and optimization</strong> after as application is compiled and released </p>