Reputation: 2100
I am running debugView under VS2010 on Win 7 64bit. I have a c# app that calls a c dll. I have some fprintf(stderr) statements in my C dll, and some Console.Error writeLine statements in my c# code, but none of them show up in DebugView. In my VS2010 I tried writing the output to the Output window, and then tried the Immediate window, and still nothing shows.
Am I doing something wrong? Is there something about c# and a dll that precludes output?
Upvotes: 0
Views: 1372
Reputation: 2100
It's a known problem: http://bembengarifin.wordpress.com/2011/01/20/debugtrace-output-is-not-being-captured-by-debugview-when-vs2010-in-debug-mode/
The solution is to write your own...not a very appealing proposition!
Upvotes: 1
Reputation: 3705
Do you have Capture Win32 and Capture Global Win32 selected in the Capture menu?
Do Trace.WriteLine() C# statements output to debugview?
Upvotes: 0