vote up 7 vote down star
4

Often I found myself doing this

if (debug)
    printf(...);

is there a better way?

flag
Duplicate of stackoverflow.com/questions/91527/… – S.Lott Nov 4 '08 at 2:38
Closed as this question is identical to the one linked to by S.Lott, which as more responses. – dbr Nov 5 '08 at 7:50

closed as exact duplicate by dbr Nov 5 '08 at 7:49

14 Answers

vote up 13 vote down

Using printf() is a perfectly legitimate way to debug. Yes there are other ways. You can use interactive debuggers such as gdb.

If you are on Windows, grab Microsoft Visual Studio Express. It's free and has one of the best interactive debuggers around.

An interactive debugger will let you step through code line-by-line, examine the contents of variables and set break-points to stop execution at specific points. Life would be real hard without these tools.

link|flag
vote up 10 vote down

printf debugging has its place of course, it's not necessarily a bad technique. But there are LOTS of better ways:

http://stackoverflow.com/questions/91527/debugging-techniques

link|flag
vote up 6 vote down

Your essential debugging tools should include...

  • Logging: sounds like you have a handle on this already :)

  • Breakpoints: tell the program to stop on a given line of code if and when it gets there

  • Callstack: ability to see the chain of function calls that lead to the current point as well as the parameters they were passed

  • Locals: ability to see what variables are defined in the current scope and what their values are

  • Watches: ability to evaluate an expression in the debugger and see what it's value is

  • Disassembly: see what the compiled instructions corresponding to your code at a specific point are

  • Registers: see the state of the CPU at a given point in your program

Some advanced types of breakpoints:

  • Conditional Breakpoints: stop on a breakpoint only if a given conditional expression is satisfied

  • Memory Breakpoints: given a memory address and a number of bytes (the size of the value that you care about), break if the value stored at that address changes

Visual Studio provides all of these capabilities. The GNU tool for debugging is gdb and will provide most or all of these abilities as well.

link|flag
vote up 2 vote down

When it comes to C I usually create a DPRINTF macro during development that expands to a printf call if DEBUG is defined (using C99 variadic macros):

#ifdef DEBUG
# define DPRINTF(...) fprintf(stderr, __VA_ARGS__);
#else
# define DPRINTF(...)
#endif

Then I insert DPRINTF statements as needed for debugging and then comment them out when I'm done with them inserting a note describing what I put them in there for. Before the production release I go back and review all of the debugging print statements and translate some of them into logging statements.

Other debugging tools I use include gdb, ltrace, strace, and lint although for the vast majority of the bugs I encounter, the printf debugging method is usually considerably faster.

link|flag
And an extension of this allows you to set different debug levels, so sometimes you get lots and lots of information, and other times you get less than the maximum information. – Jonathan Leffler Nov 3 '08 at 23:47
Right, for the logging I usually create macros LOG_DEBUG1, LOG_DEBUG2, etc. which expand to statements that will only produce output if the current debug level is high enough. Sometimes I use SIGUSR1 and SIGUSR2 to adjust the debug level during runtime. – Robert Gamble Nov 4 '08 at 0:08
this implementation is compiler specific only gcc support (...) in macros – Ilya Nov 4 '08 at 12:02
@llya, no it is not gcc specific but it does use C99 variadic macros which not all compilers support yet. I don't usually use C99 features but this one is quite useful and it's only used in development code so I made the choice to use it, I'll update the answer to point this out though. – Robert Gamble Nov 4 '08 at 12:23
vote up 2 vote down

Yes there is:

#ifdef DEBUG
#define DBG x printf x
#else
#define DBG x do {} while (0)
#endif

Vinko gave a excellent link to the discussion about debugging.
Stay away from the debugger is a good advice. In 90% of cases debugger just slow you done rather helping you.
Debugger will not help you debug the problem discovered by customer and not reproducible on your setup, well designed logging system will do that.
printf is not necessary an answer, but using macro you can easily design your logging system to use fprintf or whatever you need.
I also would suggest to make the DEBUG macro more advanced and have level and module parameters that will control the verbosity of your output.

In response to This CarlOS post:

It is a bad practice that production code in release mode produce debug output. Just assume that i debug my code while your code is running and I'm using DebugView or tail -f /var/log/messages to see the debug output of my program and i will get ton's of messages from your code. Be nice to other developer control your code output :)

But you can make the function instead macro and control your debug output in run time

void my_printf(int section, int level, ...)
{
    if (global_debug_off)
        return; 
    //do you stuff here
}

Using function instead just if(debug) printf ... will give you a flexibility to change your output device easily for example from stderr to file or network or whatever.

link|flag
A better technique is for the non-debug mode to include the printf() function call, so the compiler checks it. #define DBG x do { if (0) printf x; } while (0) – Jonathan Leffler Nov 4 '08 at 0:05
Check what ? I'm not clear that type of errors you want to catch ? Any way why in my world in release mode i want to remove the static strings from the image to reduce footprint – Ilya Nov 4 '08 at 5:57
You probably also want to remove the terminating semicolon from the non-debug version of the macro. :) – unwind Nov 4 '08 at 12:48
sure :) code reuse, it was better to just copy past from the code :) Thanks fixed. – Ilya Nov 4 '08 at 13:18
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 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 -2 vote down

code review and analysis.

link|flag

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