debugger

PHP Netbeans: xdebug stops on every include() or require()

Hi! I've just discovered PHP debugging using xdebug integrated in netbeans IDE and I think it's great! how did I live without it? :) But there's one problem: if I set a breakpoint deep in my code, I have to press "Continue" (F5) several times before I get to a breakpoint, because script stops at every include() and require() functions....

Eclipse + Pydev not breaking on external library source breakpoints

I've got a project (A) which references code in a different project (B). I've linked the two by adding B into the External Libraries list in A. So PyDev PYTHONPATH now has Source Folders as project A's source, and External Libraries contains B's source path. The problem I'm having is that breakpoints set in B are ignored, and the code d...

How do I display a byte array as a char array in the Eclipse Java debugger?

I want to view a byte array in the Eclipse (Helios Release, build id: 20100617-1415) Java debugger as a char array? Is that possible? How? For example, I want to display this: ...as: '\0', '0', 'G', '\22', etc. ...

What IDE to use for Node.js / Javascript?

What is your preference when it comes to editing/debugging large JavaScript projects, containing number of relatively big JS files? Please list your choice, why do you like it compared to others; If it is already listed you can up vote it if you like. ...

IE 8 crashes instead of opening debug dialog on encountering "_asm int 3;" in the dll code

I wanted to set breakpoint in the dll code so I introduced the statement "_asm int 3;". IE is supposed to open a dialog box saying that an unexpected exception has occured, and whether to close or debug. But it simply cuts down the window. The dll is a _Debug version not _Release version. Another thing I noticed is that using the "debug...

App crashes with "Watchdog has expired." message. No stack trace or crash dump.

My app is crashing with the following message in the Xcode debugger: Watchdog has expired. Remote device was disconnected? Debugging session terminated. The Debugger has exited due to signal 15 (SIGTERM).The Debugger has exited due to signal 15 (SIGTERM). The crash is quite severe and reboots the device most of the time. The debug...

zend debugger not recognize jquery post

When posting forms using jquery post, the ZendDebugger lost its track. For example, I have a file index.php wich submit button post to "formContent.php". something like: //index.php $("#formMiData").submit(function(){ $.post("formContent.php", $("#formMiData").serialize(), function(data){ $("#salidaAjax").html(da...

is it possible to open chrome debugger in separate window? How?

I would like to open chrome debugger in a separate window. Is this possible? How? Internet Explorer opens the debugger in separate window when i press F12 key. ...

Does the Android debugger truncate debug messages ?

Im asking because Im trying to debug a SQL query problem and adb only seems to show part of the SQL string and chops off the end. Im getting an "unrecognized token" error when running a query: W/System.err(18917): android.database.sqlite.SQLiteException: unrecognized token: "931C6752DF97CFDACD130A06CAE0E7DA6320DE2945FFFA0A65629BC687256...

How do I display a byte array as an array of hex bytes or unsigned decimal numbers in the Eclipse Java debugger?

I want to view a byte array in the Eclipse (Helios Release, build id: 20100617-1415) Java debugger as an array of hex bytes (2 digits each) or unsigned decimal numbers? Is that possible? How? For example, I want to display this: ...as: 0, 48, 71, 22, 139, 166, ... ...or as: 0x00, 0x30, 0x47, 0x16, 0x8B, 0xA6, ... (This is a simil...

Cannot start debugger on Visual Studio 2010 (F5) However, ' attach to process' does work (slow). How to fix?

The environment: Clean (new) install of Windows 7 64bit. Clean (new) install of Visual Studio 2010 Professional (10.0.30319.1). Windows Update is up to date. The problem: I cannot start the debugger on Visual Studio 2010 (hit F5): 'Unable to start debugging on the web server. Unable to connect to the web server. Verify that the web s...

Using VS2010 to debug code executed in Linqpad

I am trying to attach VS2010 debugger to Linqpad so that when I use classes from my c# project I can add breakpoints and have Linqpad execution halt. But this does not work, Linqpad happily executes and finishes without hitting my breakpoints. Now, I read a bit on Linqpad and it executes every "query" in its own process, does this in a...

Debugger / Profiler for Eclipse?

Hi, Is there any tutorial for debugging applications/ running profiler in eclipse? Please let me know thanks.. ...

How to filter call stack in Eclipse debug view for Java

While debugging, the Debug view in Eclipse shows the call stack. Which is great. But I'd love to be able to filter out all the call that I definitely don't care about, such as Spring and the JUnit runner. Here's an example of my call stack right now. I'd like to keep the entries in bold, while hiding all the rest. Is it possible to do i...

Visual Studio 2010 hangs for about three minutes when running a project debugging mode

My Visual Studio 2010 Premium hangs for about three minutes whenever I try to run a recently converted project in debugging mode (Project was converted from 2008 to 2010). Has anyone of you had this problem? Have you got any tips/tricks to help me track down errors? I know my question is very general, but company policy dictates that I...

What do question marks (???) in Visual Studio watch window signify?

I've run into an exception and looking at variables in the watch window, I'm seeing some question marks (???). Does this mean it's pointing to an invalid address? ...

UIImage not appearing when cached.

I've got a UITableView that's loading a bunch of RSS feeds, and the favicon for each feed is shown in the table cell. It works well most of the time, but sometimes the image does not appear. Looking through the debugger, the images that don't appear have the NAMED and CACHED flags set to TRUE, with all the other flags set to FALSE. Image...

eclipse debugger - stepping over only one method within another

how come that when the debugger pointer is on this line " object1.method1(object2.method2()); " stepping over skips both of the methods, instead of just the method2 ? I always have to step into the method2 if I want then to step into method1. Usually method2 is some kind of low level stuff I'm not interested in. ...

start without debugging (F5) and start with debugging (Ctrl + F5)

Hi, I have been working on a uni C++ project. I am presently using VS2010 . It is almost the end and now I am facing a strange problem. I try to run my program in debug mode by pressing F5. It works fine. Then I try to run the program by pressing Ctrl + F5, and I get an exception at free.c (It gives an exception to vector.push_back)....

list of debuggers available for c++

Hi Can anyone tell me what are the debugger(s) available for c++ language. Also please provide details about those debugger or reference to get details for the same. Thanks, -Pravin ...