Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program.
238
votes
60answers
22k views
Is a debugger the mother of all evil? [closed]
Some say that a debugger is the mother of all evil. What do you think of this approach?
I have a friend at work, a colleague, who's completely against using a debugger whatsoever.
I asked him: So, ...
136
votes
17answers
49k views
Is there a good Valgrind substitute for Windows?
I was looking into Valgrind to help improve my C coding/debugging when I discovered it is only for Linux - I have no other need or interest in moving my OS to Linux so I was wondering if there is a ...
120
votes
7answers
78k views
How to print debug messages in the Google Chrome Javascript Console
Does anyone know how to print debug messages in the Google Chrome Javascript Console?
Please note that the Javascript Console is not the same as the Javascript Debugger, they have different syntaxes ...
106
votes
2answers
2k views
Making your .NET language step correctly in the debugger
Firstly, I apologize for the length of this question.
I am the author of IronScheme. Recently I have been working hard on emitting decent debug info, so that I can use the 'native' .NET debugger.
...
80
votes
5answers
21k views
How to debug node.js applications
How do I debug a node.js server application? Right now I'm mostly using alert debugging with print statements like this:
sys.puts(sys.inspect(someVariable));
There must be a better way to debug. I ...
74
votes
23answers
3k views
Why is debugging better in an IDE?
I've been a software developer for over twenty years, programming in C, Perl, SQL, Java, PHP, JavaScript, and recently Python. I've never had a problem I could not debug using some careful thought, ...
72
votes
8answers
85k views
How do you launch the javascript debugger in Google Chrome?
When using Google Chrome, I want to debug some javascript. How can I do that?
71
votes
11answers
17k views
NUnit isn't running Visual Studio 2010 code
I'm trying to load a Visual Studio 2010 beta dll into the NUnit GUI. I get a popup error.
This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. You ...
70
votes
14answers
4k views
Visual Studio debugger tips & tricks for .NET
I've been working for years with VS's debugger, but every now and then I come across a feature I have never noticed before, and think "Damn! How could I have missed that? It's so useful!"
...
67
votes
4answers
30k views
What is private bytes, virtual bytes, working set?
I am using perfmon windows utility to debug memory leak in a process.
Perfmon explaination:
Working Set- Working Set is the current size, in bytes, of the Working Set of this process. The Working ...
65
votes
4answers
51k views
Debugging with command-line parameters in Visual Studio
I'm developing a C++ command-line application in Visual Studio and need to debug it with command-line arguments. At the moment I just run the generated EXE file with the arguments I need (like this ...
64
votes
20answers
4k views
How do you debug a regex?
Regular expressions can become quite complex. The lack of white space makes them difficult to read. I can't step though a regular expression with a debugger. So how do experts debug complex regular ...
63
votes
25answers
20k views
C++ gdb GUI
Briefly: Does anyone know of a GUI for gdb that brings it on par or close to the feature set you get in the more recent version of Visual C++?
In detail: As someone who has spent a lot of time ...
63
votes
27answers
8k views
How do you debug PHP scripts?
How do you debug your PHP script?
I am aware of basic debugging such as using the Error Reporting. The breakpoint debugging in PHPEclipse is also quite useful. Any other good/better techniques out ...
62
votes
15answers
38k views
HTTP testing tool, easily send POST/GET/PUT
I'm in the need of a tool to help debugging a webapp - anyone know of some simple
client tools that allow you to easily send and construct customizable POST/GET/PUT/DELETE HTTP requests ?
62
votes
73answers
10k views
What's the toughest bug you ever found and fixed? [closed]
What made it hard to find? How did you track it down?
Not close enough to close but see also
http://stackoverflow.com/questions/175854/what-is-the-funniest-bug-youve-ever-experienced
61
votes
19answers
36k views
Easier way to start debugging a windows service in C#
Is there a way to easier start stepping through code except to start the service through the Windows Service Controll Management and then attach the debugger to the thread? It's kind of cumbersome and ...
60
votes
47answers
4k views
Debugging techniques
Debugging is the most time consuming activity of programming. So using appropriate tools and techniques is paramount to efficiency and productivity.
What are your favorite debugging techniques, and ...
57
votes
4answers
14k views
How do I print the elements of a C++ vector in GDB?
I want to examine the contents of a std::vector in GDB, how do I do it? Let's say it's a std::vector<int> for the sake of simplicity.
52
votes
27answers
1k views
How do you reproduce bugs that occur sporadically?
We have a bug in our application that does not occur every time and therefore we don't know its "logic". I don't even get it reproduced in 100 times today.
Disclaimer: This bug exists and I've seen ...
50
votes
2answers
1k views
Android Kernel Debugging
I have been experimenting with getting kgdb to work the Nexus One.
I have pulled the kernel from android.git.kernel.org and enabled everything to do with KGDB including kgdbts testing using ...
49
votes
1answer
2k views
Debug PostgreSQL function using pgAdmin
I refer this to enable the debugger in the PostgreSQL server in order to debugging the plpgsql function by stepping through the codes using the pgadmin.
I have already set shared_preload_libraries ...
48
votes
10answers
19k views
Which version of Perl should I use on Windows?
The win32.perl.org web site provides references to several Perl distributions for MS Windows.
For a long time I have been using ActivePerl from
ActiveState but recently I switched to
Strawberry ...
47
votes
8answers
10k views
How to debug in Django, the good way?
So, I started learning to code in Python and later Django. The first times it was hard looking at tracebacks and actually figure out what I did wrong and where the syntax error was. Some time has ...
43
votes
6answers
6k views
Debugging in Clojure?
What are best ways to Debug Clojure code, while using the repl in Clojure-box ?
43
votes
7answers
21k views
Will #if RELEASE work like #if DEBUG does in C#?
In all the examples I've seen of the #if compiler directive, they use "DEBUG". Can I use "RELEASE" in the same way to exclude code that I don't want to run when compiled in debug mode? The code I ...
43
votes
5answers
22k views
Can I set a breakpoint on 'memory access' in GDB?
I am running an application through gdb and I want to set a breakpoint for any time a specific variable is accessed / changed. Is there a good method for doing this? I would also be interested in ...
42
votes
4answers
17k views
How do I print the full value of a long string in gdb?
I want to print the full length of a C-string in GDB. By default it's being abbreviated, how do I force GDB to print the whole string?
41
votes
4answers
2k views
So eclipse and xdebug walk into a bar, and then my apache server dies
I am using windows xp x86, wamp, apache2, php 5.3 x86, eclipse php, and xdebug, running on localhost as both a virtualhost and an https virtualhost
eclipse version info
Eclipse for PHP Developers
...
41
votes
9answers
7k views
C# debug vs release performance
I've encountered in the following paragraph:
“Debug vs Release setting in the IDE when you compile your code in Visual Studio makes almost no difference to performance… the generated code is almost ...
41
votes
6answers
18k views
What is a python equivalent of PHP's var_dump()
When debugging in PHP I frequently find it useful to simply stick a var_dump($foo, $bar, ...) in my code to show me the the what a variable is, what is value is, and the same for anything that it ...
40
votes
9answers
23k views
Is there a function in Python to print all the current properties and values of an object?
So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
39
votes
5answers
14k views
What IDE to use for Node.js / Javascript? [closed]
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 ...
39
votes
12answers
4k views
Most tricky/useful commands for gdb debugger
Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.
39
votes
7answers
11k views
Debugging in ruby 1.9
What do you guys use for debugging in ruby 1.9? rdebug doesn't seem to be compatible.. is there anything out there?
37
votes
6answers
6k views
How does a debugger work?
I keep wondering how does a debugger work? Particulary the one that can be 'attached' to already running executable. I understand that compiler translates code to machine language, but then how does ...
36
votes
9answers
60k views
JavaScript: How do I print a message to the error console?
How can I print a message to the error console, preferably including a variable? e.g., something like
print('x=%d', x);
35
votes
12answers
55k views
How can I connect to Android with ADB over TCP?
I am attempting to debug an application on a Motorola Droid but I am having some difficulty connecting to the device via USB. My development server is a Windows 7 64bit VM running in HyperV and so I ...
35
votes
2answers
545 views
Is it possible to write extensions to Delphi's debugger?
I know there's an API for creating extensions to Delphi. I use the GExperts package and various JVCL experts frequently. But I've never seen any extensions to the debugger. It would be very nice, ...
34
votes
12answers
19k views
How to debug heap corruption errors?
I am debugging a (native) multi-threaded C++ application under VS2008. On seemingly random occasions, I get a "Windows has triggered a break point..." error with a note that this might be due to a ...
33
votes
21answers
7k views
What is your favourite Windbg tip/trick?
I have come to realize that Windbg is a very powerful debugger for the Windows platform & I learn something new about it once in a while. Can fellow Windbg users share some of their mad skills?
...
33
votes
16answers
25k views
Which is the best Linux C/C++ debugger (or front-end to gdb) to help teaching programming?
I teach a sort of "lite" C++ programming course to novices ("lite" meaning no pointers, no classes, just plain old C, plus references and STL string and vectors). Students have no previous experience ...
31
votes
7answers
659 views
Stepping through a TCP/IP stack
I was working as a QA engineer for a proprietary embedded operating system. They built their own ATN stack and stepping though it with a debugger was the most eye opening experience I have had with ...
31
votes
2answers
19k views
How to view contents of NSDictionary variable in Xcode debugger?
Is there a way to view the key/value pairs of a NSDictionary variable through the Xcode debugger? Here's the extent of information when it is fully expanded in the variable window:
Variable Value ...
31
votes
11answers
25k views
How can one grab a stack trace in C?
I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.)
Thanks for ...
31
votes
6answers
52k views
How do I use the JavaScript Console in Google Chrome?
I have a Font Detect code that does not work in Google Chrome, and I thought I would find out what is going on. But I still can't figure out how I can add breakpoints or do watch etc. I am looking for ...
30
votes
6answers
3k views
Starting to learn Windbg
After being troubled by an issue that I simply did not have the knowledge to debug, I've just decided that I have to learn how to use Windbg. My only problem: I have no clue where to start :-( I'm not ...
30
votes
11answers
17k views
JavaScript data formatting/pretty printer
I'm trying to find a way to 'pretty print' a JavaScript data structure in a human-readable form for debugging.
I have a rather big and complicated data structure being stored in JS and I need to ...
29
votes
5answers
473 views
Software patching at a billion miles
Could someone here shed some light about how NASA goes about designing their spacecraft architecture to ensure that they are able to patch bugs in the deployed code?
I have never built any “real ...
29
votes
5answers
6k views
VS debugging “quick watch” tool and lambda expressions
Why can't I use lambda expressions while debugging in “Quick watch” window?
UPD: see also
http://blogs.msdn.com/b/jaredpar/archive/2009/08/26/why-no-linq-in-debugger-windows.aspx
...