vote up 28 vote down star
37

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 in which cases do you apply each of them?

There are many orthogonal criteria to consider:

  • Programming languages (tools usually are language specific, and there are maybe some techniques that are applicable only within specific languages)
  • Applications (web applications, client side, server side, singlethreaded versus multithreaded)
  • Environment (how many tiers, is it on a stored procedure, is it on an embedded device)

But I'm mainly interested on techniques (and tools, if there are any) which are generally applicable and that you find most useful for finding and squashing bugs.

flag

49 Answers

prev 1 2
vote up 1 vote down

If I have a good understanding of the code, say, like the back of my hand, then I'll start to rationalize and track down any source of the problem in my head. I'll come to a conclusion and then go test my hypothesis. If I find the bug or problem and fix it without creating another problem, great. If I don't fix it with one swoop, then I'll continue using the aid of the built in debugger.

If I'm not familiar with the code I'll try to think of where the most logical place for the problem to be. I'll start testing and prodding to find out where it is, then I'll try to fix it.

I have to say that my favorite technique to use is using the breakpoint in Visual Studio. Its such a handy little thing that I forget how helpful it can really be until I run into some extraneous result.

link|flag
vote up 1 vote down

You should use a debugger. There are several out there: GDB, Visual Studio, Eclipse, XCode, etc.

link|flag
vote up 1 vote down

See this SO thread, as the question is almost identical.

link|flag
vote up 1 vote down

If you are unlucky enough to have either a multi-threaded program or a multi-process systems (or multi-process system consisting of multi-threaded programs) where those programs do different things depending on timing interactions, then using a debugger is really hard, and variations on the debugging print statements may be necessary. Sometimes, even those can change the timing characteristics enough to change the behaviour of the program -- leading to 'heisenbugs'. (You can get heisenbugs without needing multi-threading or multi-processing; those just make them more likely.)

link|flag
vote up 1 vote down
  1. Log Trace messages
  2. Log warnings
  3. Log errors

Have a configurable switch to turn the amount of logging. No debugger can substitute this. It also helps you to debug issues in other environments where you cannot attach debugger (like QA, Staging , Prod etc

Just like programming, logging is an art

link|flag
vote up 1 vote down

I work in the mobile phone industry and we often encounter situations that an on-PC software simulator simply won't simulate. So we have to put the application on the physical phone and hope we can replicate the issue that is being investigated.

Here are the conditions: we don't have a debugger and we don't always get synchronous logging messages (oh, and the OEM throws in a ton of extra messages that can't be turned off so that you'll have some next extra reading to do).

Since the logging system is asynchronous, by the time you suspect you should have gotten a message, the phone will have crashed. So we have to try alternate ways of getting info, a lot of which have already been mentioned, but here are a few extra:

  • File logging: print our logs to file; this is problematic in that writing to a file may cause more problems or may simply be too slow. Not always available (not all phones have file system).
  • Memory management: put checks in to ensure there aren't any leaks near the area of suspicion. Also consider low or fragmented conditions.
  • Assertions: Mentioned before, but worth mentioning again. I've broken code on purpose before just to understand the expected behavior. Sometimes it offers an indirect view of the issue.
  • "When in doubt, print more out," as somebody mentioned above. Despite the asynchronous nature of the logs, sometimes enough data will reveal a pattern that can be extrapolated into an idea for a solution.
  • Consider the network conditions; time of day, weekday or weekend, which operator, etc.

When push comes to shove, it all comes down to process of elimination. What elements in the code can be controlled enough so that a pattern might emerge?

link|flag
vote up 1 vote down

In PHP, the

<pre>

HTML tag, along with

var_dump()

and

print_r()

are your friends.

link|flag
vote up 1 vote down

In .NET, using the $exception keyword in the Immediate Window.

I often have the misfortune to debug code like the following

try {
   //something that fails
} catch {
   //do nothing
}

With a breakpoint in the catch block you can get access the exception by typing in $exception

link|flag
vote up 0 vote down

Tests & Testing!

I hope I'm not stating the obvious here.

link|flag
vote up 0 vote down

I find that whatever I'm debugging - be it C, C++, Perl or even HTML or CSS - if I pare down the source to the absolute bare minimum (or even transplant the erroneous section into a minimal program or page), the issue quickly becomes apparent.

link|flag
vote up 0 vote down

Debugging is usually very contextual, based on the problem you are debugging. Some broad tips are

  1. Try to isolate the problem to figure out which line of code, function fails.
  2. Check all the variables, see if they hold incorrect values.
  3. Dangling memory, memory overwrite etc can be tracked using a memory breakpoint. Some debuggers support this and I know Visual Studio does.
  4. Get to know the machine architecture, and calling conventions of methods. This will be really useful when figuring out how data is passed across functions.
link|flag
vote up 0 vote down

hi there,

learn to use your debugger well -- conditional breakpoints. Dynamic breakpoints(as in NuMega SoftIce/W) or as in javascript debugger calls(or WIN32 DebugBreak()) help you break into a debugger when you hit that rare/impossible situation. So, it also helps to have debugging in mind when you code complex apps.

It also helps to know how to "look" at log files (for server based apps). I use find, grep, xargs, tail, screen (new tool) to help me get my job done. You can do a lot by using a scripting language.

Above all, understanding what is happening is important : your brain is the best tool that you can possess.

Having access to a nice Editor(XEmacs works for me) which can let you filter view a log can make a big difference :-)

BR,
~A

link|flag
vote up 0 vote down

Sure, using a Debugger to set Breakpoints and then using the Watch-Function to have a look at the state of your program.

Under Windows, windbg and the Visual Studio Debugger would come into my mind, under Linux I think gdb used to be one, not sure what the current state is.

What is your Operating System and C Compiler?

link|flag
vote up 0 vote down

If you are debugging, you know something horribly confused you. Don't do it! Step back, write down invariants and understand what you are doing.

assert is a nice way to accomplish this.

link|flag
vote up 0 vote down

I do not want to build a debug and release version of my program. I want it to be more dynamic. Is ok to have lots of if (debug)...?

link|flag
vote up 0 vote down

There are tools to debug, which are generally specific to particular platforms, and then there are ways to debug, which are more generic approaches common to lots of problem sets.

I recommend a read of Debugging by David Agans

link|flag
vote up 0 vote down

In response to Ilya: i was thinking something like this

typedef void(* debugproto)  (char *string);

void dummy (char *string)
{
}

void debug(char *string)
{
    //printf or something like output to a file.
    printf("%s",string);
}

debugproto global_debug_proc = dummy;

...
if (global_debug)
    global_debug_proc = debug;
...
global_debug_proc("Yay debug mode on!!!");

This way it will only check for global_debug once, but I don't know if it's ok to do that.

link|flag
vote up 0 vote down

When debugging C++ code with Visual Studio I frequently put "eax" into my watch window to see the return of the last function.

link|flag
vote up -2 vote down

code review and analysis.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.