difference between Trace and Debug ?

Answer Posted / swapana thorat

Trace and Debug - There are two main classes that deal with
tracing - Debug and Trace. They both work in a similar way -
the difference is that tracing from the Debug class only
works in builds that have the DEBUG symbol defined, whereas
tracing from the Trace class only works in builds that have
the TRACE symbol defined. Typically this means that you
should use System.Diagnostics.Trace.WriteLine for tracing
that you want to work in debug and release builds, and
System.Diagnostics.Debug.WriteLine for tracing that you want
to work only in debug builds.

Tracing is actually the process of collecting information
about the program's execution. Debugging is the process of
finding & fixing errors in our program. Tracing is the
ability of an application to generate information about its
own execution. The idea is that subsequent analysis of this
information may help us understand why a part of the
application is not behaving as it should and allow
identification of the source of the error.

We shall look at two different ways of implementing tracing
in .NET via the System.Web.TraceContext class via the
System.Diagnostics.Trace and System.Diagnostics.Debug
classes. Tracing can be thought of as a better alternative
to the response.writes we used to put in our classic ASP3.0
code to help debug pages.

If we set the Tracing attribute of the Page Directive to
True, then Tracing is enabled. The output is appended in the
web form output. Messeges can be displayed in the Trace
output using Trace.Warn & Trace.Write.

NOTE The only difference between Trace.Warn & Trace.Write is
that the former has output in red color. If the trace is
false, there is another way to enable tracing. This is done
through the application level. We can use the web.config
file and set the trace attribute to true. Here we can set
<trace enabled=false .../>

Note that the Page Directive Trace attribute has precedence
over th application level trace attribute of web.config.
While using application level tracing, we can view the trace
output in the trace.axd file of the project.

Is This Answer Correct ?    13 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is difference cookie and session?

527


Describe the difference between inline and code behind - which is best in?

512


What is the default Orientation property in a Menu control?

538


What are session and cookies?

536


What is the asp.net control toolkit?

558






What is bound controls

588


Explain diff. Between friend and protected friend?

500


What is the difference between application state and caching?

546


To redirect the user to another page which method do we use without performing a round trip to the client?

536


What is the difference between asp.net mvc and asp.net webforms? : asp.net mvc

542


How tooltip is set through code-behind in ASP.NET?

577


In a webservice, need to display 10 rows from a table. Which is the best choice among datareader or dataset?

653


can we remote debug applications with the remote debugger installed with vs.net 2002, with vs.net 2003?

1752


Where session variables are stored?

546


Where session id is stored?

536