I would like to see an option that could also write the output in the Debug.Print() to a file.
Something like:
Debug.ShowWindow(true);
Debug.SetTraceMode(true);
Debug.SetLogFile("c:\\temp\\debug.txt");
-- do some stuff
Debug.SetLogFile(); -- turn output to file off
This could be helpful for people trying to trace down difficult to find crashes by allowing them to trace the code to where it crashes....
Something like:
Debug.ShowWindow(true);
Debug.SetTraceMode(true);
Debug.SetLogFile("c:\\temp\\debug.txt");
-- do some stuff
Debug.SetLogFile(); -- turn output to file off
This could be helpful for people trying to trace down difficult to find crashes by allowing them to trace the code to where it crashes....
Comment