vote up 1 vote down star
2

How can one look at .NET Debug.WriteLine traces outside the debugger?

flag

68% accept rate

3 Answers

vote up 1 vote down check

You can either use DbgView from Sysinternals or add the following to your applications config file to trace messages to the console:

<configuration>
  <system.diagnostics>
    <sources>
      <source name="TraceTest" switchName="SourceSwitch" 
        switchType="System.Diagnostics.SourceSwitch" >
        <listeners>
          <add name="console" />
          <remove name ="Default" />
        </listeners>
      </source>
    </sources>
    <switches>
      <!-- You can set the level at which tracing is to occur -->
      <add name="SourceSwitch" value="Warning" />
        <!-- You can turn tracing off -->
        <!--add name="SourceSwitch" value="Off" -->
    </switches>
    <sharedListeners>
      <add name="console" 
        type="System.Diagnostics.ConsoleTraceListener" 
        initializeData="false"/>
    </sharedListeners>
    <trace autoflush="true" indentsize="4">
      <listeners>
        <add name="console" />
      </listeners>
    </trace>
  </system.diagnostics>
</configuration>

You can also change the type of the trace listener in the log file from System.Diagnostics.ConsoleTraceListener to any other trace listener, e.g. to log to the system's EventLog or to trace to a custom application.

link|flag
I tried adding a <AppName>.exe.config file, with the above contents, in the same folder as my executable, but nothing happened when the program traced stuff. I also tried System.Diagnostics.TextWriterTraceListener in the config file as suggested at msdn.microsoft.com/en-us/library/…, which worked only if there was lots of trace data -- apparently it doesn't flush the file automatically. – Qwertie Apr 21 at 16:30
Follow up: autoflush="false" must be changed to autoflush="true". And it's too bad I can't get the console trace listener working. Worst of all it doesn't work on a Release build, even though I have defined TRACE! – Qwertie Apr 21 at 16:41
Oh I see, I have to use Trace.WriteLine instead of Debug.WriteLine for the TRACE constant to work. – Qwertie Apr 21 at 16:57
vote up 1 vote down

Check out DebugView. I have not used this with .NET, but I have used it with VC++ apps.

link|flag
dang, slow on the draw. – scottm Apr 21 at 15:45
It captures traces for the whole system. I'd like something I can give to another engineer and say "just use this to see the traces"; unfortunately this tool produces a lot of noise and I don't see an obvious way to filter just my app. Also unfortunate is that my app contains C++ code that also produces irrelevant traces I would like to hide - so a .NET-only trace would be nice. – Qwertie Apr 21 at 16:46
vote up 0 vote down

Use dbgview

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.