Reputation: 7186
When I run my .Net
application in Visual Studio
there is a debug log in the Output section:
Is this written to some file or how could it be parsed?
Upvotes: 3
Views: 752
Reputation: 7186
TextWriterTraceListener myListener = new TextWriterTraceListener("myDebugLogFile.txt")); Debug.Listeners.Add(myListener);
Upvotes: 1