Often I found myself doing this
if (debug)
printf(...);
is there a better way?
|
4
|
|||||
|
closed as exact duplicate by dbr Nov 5 '08 at 7:49 |
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
|
Your essential debugging tools should include...
Some advanced types of breakpoints:
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. |
||
|
|
|
|
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):
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. |
||||||||
|
|
|
Yes there is:
Vinko gave a excellent link to the discussion about debugging. 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
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. |
||||||||
|
|
|
You should use a debugger. There are several out there: GDB, Visual Studio, Eclipse, XCode, etc. |
||
|
|
|
|
See this SO thread, as the question is almost identical. |
||
|
|
|
|
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.) |
||
|
|
|
|
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? |
||
|
|
|
|
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. |
||
|
|
|
|
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)...? |
||
|
|
|
|
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 |
||
|
|
|
|
In response to Ilya: i was thinking something like this
This way it will only check for global_debug once, but I don't know if it's ok to do that. |
|||
|
|
|
|
code review and analysis. |
||
|
|