When I publish my ASP.NET site in RELEASE mode, will tracing work?

When I publish my ASP.NET site in RELEASE mode and set the compilation to debug = "false", will my ASP.NET and System.Diagnostics traces run?

0


source to share


2 answers


I believe that tracing is set separately from debugging in the configuration, so yes if it is configured correctly.



<configuration>
 <system.web>
  <trace enabled="true" requestLimit="40" localOnly="false"/>
 </system.web>
</configuration>

      

+1


source


Beware that tracing completely ruins whatever msajax stuff you use



0


source







All Articles