I'm working on some code that uses the System.Diagnostics.Trace class and I'm wondering how to monitor what is written via calls to Trace.WriteLine() both when running in debug mode in Visual Studio and when running outside the debugger.
I was too slow to get this in myself, +1
Aardvark
2008-09-10 17:51:51
+1
A:
I use a simple little program called 'BareTail' which displays plain text files, updating it's display as the file gets written to and follows (or wraps) to the bottom of the file.
When running outside the debugger you'll need to attach a file-writer to write out the trace information, which you can do by adding a few lines to the .exe.config file
Hope that Helps ;o)
Andrew
2008-09-10 17:55:42
+1
A:
Have a look at DevTracer. It also allows monitoring a .NET application remotely.
DISCLAIMER: I am the developer of DevTracer and therfore my opinion may not be neutral.
nruessmann
2008-09-17 19:42:45