Questions tagged [debugview]

DebugView is a tool from Sysinternals to capture debug messages

DebugView is a tool written by Mark Russinovich to capture debug messages. It is part of the Sysinternals suite (formerly Winternals).

61 questions
28
votes
4 answers

How to make DebugView work under .NET 4?

SysInternals' DebugView no longer works if used under .NET 4. Some research indicated that the new architecture of the framework did not allow for traces to be captured if a debugger was attached; in my case it's the Visual Studio debugger. Changing…
SoManyGoblins
  • 5,605
  • 8
  • 45
  • 65
23
votes
5 answers

No output from DebugView

I've installed DebugView 4.79 on Windows 7 and Windows 8 64 bit machines and a Windows 7 32 bit machine. On all of them I see no output from DebugView when starting it as Administrator. I'm trying to debug an application that uses a CLI/C++…
DaveO
  • 1,909
  • 4
  • 33
  • 63
13
votes
5 answers

How to view output of OutputDebugString?

I want to use OutputDebugString() in my application and then have the option to show it in a separate viewer when the application is deployed in the field. That is to say, I don't want to have to change a flag and rebuild my .exe to turn debugging…
Mawg says reinstate Monica
  • 38,334
  • 103
  • 306
  • 551
9
votes
3 answers

Can I disable "debug view" in Visual Studio 2010?

Visual Studio 2010 switches to "debug view" when i click 'start debugging' - much like Eclipse does. Can i disable this feature - if so how? My machine doesn't perform very well - therefore the feature is irritating. Besides with two monitors i…
Gerard
  • 13,023
  • 14
  • 72
  • 125
8
votes
6 answers

Alternatives to DebugView?

I'm using Sysinternals DebugView for debugging/logging during testing, and it's pretty good. However I was thinking is there more advanced tool. Features I'm looking for: Live filters - log everything (well, everything "interesting"), change view…
Harriv
  • 6,029
  • 6
  • 44
  • 76
7
votes
3 answers

Android device does not connect to firebase DebugView

I'm trying to connect the device to DebugView. but, do not connected. I referenced the DebugView document. All I know is what is stated in this document. Is there any other reason not to connect? I simulated the following. Open the terminal. and…
kyeonghwan
  • 424
  • 3
  • 7
  • 21
6
votes
2 answers

Why does DebugView not show debugging messages when Visual Studio does

I am developing a Browser Helper Object running inside Internet Explorer. I am writing debugging messages with ATLTRACE("..."); These appear fine when Visual Studio is attached to the iexplore.exe process, but this is slow for a quick test.…
Mat
  • 82,161
  • 34
  • 89
  • 109
4
votes
1 answer

What does DebugView's "Enable Verbose Kernel Output" do?

I've followed Microsoft's "Write a Hello World Windows Driver (KMDF)" and wasn't sure how to see the output on WinDbg. After trying to set the Debug Print Filter registry to 0xFFFFFFFF, rebooting and other rain dance solutions, the one thing that…
L4mbo
  • 43
  • 4
3
votes
2 answers

Trace.WriteLine not producing any output

I'm having an odd problem With Trace.WriteLine not producing any output. I've traced the code and Trace.Writeline is definitely getting called, but no output is appearing in the Output window or in SysInternals' DebugView. Is something wrong with my…
Tim Long
  • 13,508
  • 19
  • 79
  • 147
3
votes
2 answers

Viewing DbgPrint messages in Windows 8.1

I'm trying to write a MiniFilter driver. I've got Visual Studio 2013 Update 3 and WDK up and running on my Windows 8.1 box, along with a template from MS installed called "Filter Driver: Filesystem Mini-filter". I've made a fresh project with this…
athairus
  • 33
  • 1
  • 6
3
votes
4 answers

OutputDebugString + DebugView = not tabs!

I am dumping \t delimited data using using OutputDebugString and then use ex-Sysinternals DebugView to capture it. The problem is that all the data in DebugView appear to be space delimited, hence I need to perfrorm CTRL+H "\x20" "t" to replace…
Steve
  • 551
  • 2
  • 8
  • 18
2
votes
1 answer

Firebase Analytics Debug View is connected, but not showing events

I have an app in Xcode that is connected to Firebase / Firebase Debugger. I have previously connected the app to the debugger and it was working (using -FIRAnalyticsDebugEnabled). I then turned the debugger off, using -FIRDebugDisabled. I now am…
nicksarno
  • 3,850
  • 1
  • 13
  • 33
2
votes
1 answer

How would my program listen to OutputDebugString output and allow launch of multiple instances?

Here's my scenario: I have a program which produces debug output with OutputDebugString() which maybe contains messages indicating bugs. I want to run this program inside daily build and automatically listen to debug output, parse it and report…
sharptooth
  • 167,383
  • 100
  • 513
  • 979
2
votes
0 answers

How to study why ServiceStart does not start the service?

i created a service manager application that allows to install (with SC CREATE), start (using a code very similar to the one in the answer to:How to start a windows service in Delphi for Windows 8), stop and uninstall a service. The service is a…
2
votes
2 answers

Deploy debug visualizer as a VSIX extension

is it possible to deploy my debug visualizer with the new extension system in visual studio 2010? I want to publish it on the online gallery and allow to manage it via the extension manager. The visualizer assembly must be copied to "My…
MBulli
  • 1,659
  • 2
  • 24
  • 36
1
2 3 4 5