runnerpaul
runnerpaul

Reputation: 7186

Debug log file location in Visual Studio run .NET applicaiton

When I run my .Net application in Visual Studio there is a debug log in the Output section:

enter image description here

Is this written to some file or how could it be parsed?

Upvotes: 3

Views: 752

Answers (1)

runnerpaul
runnerpaul

Reputation: 7186

TextWriterTraceListener myListener = new TextWriterTraceListener("myDebugLogFile.txt")); Debug.Listeners.Add(myListener); 

Upvotes: 1

Related Questions