debugView showing no stderr output

1.3k Views Asked by At

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?

2

There are 2 best solutions below

0
On

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!

9
On

Do you have Capture Win32 and Capture Global Win32 selected in the Capture menu?

Do Trace.WriteLine() C# statements output to debugview?