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
0
votes
1 answer

How to use Firebase DebugView for App Tracking

I need to debug the tracking events and parameters for an app, but as I am a marketer I do not have access to the project or any skills in development. However, I have the DEV version of the APK and managed to open it in Android Studio and connect…
0
votes
1 answer

Not enabling verbose kernel output causes windbg to not print my dbgprints in my kernel driver?

The problem with turning on verbose kernel output on debugview is that it prints loads of garbage when i attach my windbg to the system, like its too much noise. and if i don't turn it on, my debug messages don't get printed in windows 7+ (unlike…
Notoriouss
  • 82
  • 9
0
votes
2 answers

How to view debugview's output in windows 7 and later without having to restart the computer?

The method i know to be able to capture kernel debug data in windows 7+, is to add Debug Print Filter registry key in the registry, but this requires a reboot. Is there any method that enables me to capture kernel debug messages without having to…
Notoriouss
  • 82
  • 9
0
votes
1 answer

Android device cannot connect to Firebase Debug View

I want to connect my device to firebase console to use firebase debug view and I use this command to connect to debug view adb shell setprop debug.firebase.analytics.app com.myapp.com but it show error adb server version (41) doesn't match this…
Demoz_Dev
  • 117
  • 1
  • 4
0
votes
0 answers

Firebase analytics event parameters are not registered

I am well acquainted with Firebase Analytics, I created some custom event with parameter "value" and send it this way: Bundle bundle = new Bundle(); bundle.putString("value", "my_value"); firebaseAnalytics.logEvent("my_event", bundle); In DebugView…
Aleksey Khokhrin
  • 166
  • 2
  • 13
0
votes
0 answers

Delphi 2007 - using the IDE to debug, but having debug output go to DebugView(++)

When I compile and run my Delphi apps from the IDE, the debug output (from calls to OutputDebugString) goes to the event log window of the IDE. When I run the compiled EXE stand-alone, the debug output goes to whatever debug viewer that is…
rossmcm
  • 5,493
  • 10
  • 55
  • 118
0
votes
0 answers

Eclipse Plugin Dev- Extracting IStackFrame object from selection in Debug View

So, I am developing an Eclipse plugin and trying to build a View similiar to the Variables View. Now, to get the selected StackFrame from the Debug View, I have registered an IDebugContextListener, which ultimately calls the method listed below in…
Manav Garg
  • 512
  • 1
  • 3
  • 17
0
votes
1 answer

Debug tools that captures the process name and not the process number and also be able to save the log file

Can anybody suggest a Debug tool that captures the process name and not the process number and also be able to save the log file I have come across Trace spy but it does not save the log.
Trish
  • 11
  • 1
0
votes
1 answer

My header view in UITableView is not added to the UIView Hierarchy

Using UITableView and NSFetchedResultsController I refresh and display the content of my table. At some point I hava a screen without header view. It should be instead of the space between cells. When I debug View hierarchy I have the following…
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
0
votes
1 answer

DebugView Print Column Displays "????"

When using the following code to call OutputDebugString on a Windows 7 box I only see "????" in the print column of DebugView. I think this may be an encoding related issue but not sure is anyone has seen this before. Here is the code I am using…
Doug
  • 5,268
  • 24
  • 31
0
votes
1 answer

Trace from aspx.cs file

How can I trace from the client side of a ASP.NET web application ? I'm trapped in a aspx.cs file and I really need some fast simple debugging. I tried System.Diagnostics.Trace.WriteLine without success: nothing appeared in DebugViewer when I…
Liviu
  • 1,859
  • 2
  • 22
  • 48
0
votes
3 answers

C++ try/catch: OutputDebugStringW in catch block outputs twice?

I have a function with a try catch block that looks like this: bool apple() { OutputDebugStringW(L"entered apple"); try { SomeObj orange; int a = global_b->num; // global_b is NULL int b = global_b->someothernum; // global_b is…
loop
  • 3,460
  • 5
  • 34
  • 57
0
votes
2 answers

DebugView makes my application crash

I have an application done in C++ with Visual Studio 2010 and it is firing a lot of debug info with OutputDebugStringW (about 50 per seconds which is obviously a lot). If I open close DebugView 3 ou 4 times then my application gets unstable and…
Jet
  • 31
  • 3
0
votes
2 answers

debugView showing no stderr output

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…
PaeneInsula
  • 2,010
  • 3
  • 31
  • 57
0
votes
1 answer

Windows 2008 r2 debugview (OutputDebugString) issue

Hi we are installing x86 application as a service on windows 2008 R2 which is using OutputDebugString for debug messages. The problem is that DebugView utility catches the debug output from the application only when application is run from console…
Boris
  • 1,311
  • 13
  • 39