Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to see Debug output without Visual Studio?

Using MFC's TRACE macro or OutputDebugString from the Windows API, you can write to the output window of Visual Studio. Is there any way to see this output on a system where you don't have Visual Studio installed, and don't want to install it?

like image 957
Mark Ransom Avatar asked Mar 13 '09 00:03

Mark Ransom


2 Answers

You can use Debugview from Sysinternals/Microsoft

http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx

like image 131
nusi Avatar answered Nov 08 '22 12:11

nusi


You can capture the output from OutputDebugString with DebugView for Windows:

DebugView is an application that lets you monitor debug output on your local system, or any computer on the network that you can reach via TCP/IP. It is capable of displaying both kernel-mode and Win32 debug output, so you don't need a debugger to catch the debug output your applications or device drivers generate, nor do you need to modify your applications or drivers to use non-standard debug output APIs.

like image 27
Mitch Wheat Avatar answered Nov 08 '22 14:11

Mitch Wheat