vote up 71 vote down star
48

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, you just write code without bugs? Is that it?

He answers: Of course not. Everyone makes mistakes, the difference is how you deal with them effectively, how you make sure not to make the same mistake again. When using a debugger, you may find your way to that bug, and you may fix it for the specific scenario you've witnessed, but - a) you're wasting your time b/c all that time put into debugging can never be reused, it's a one time hack in the sense that if you have another bug later, you'll probably need to start all over again and b) you've only solved this one bug, and might be that for only this specific scenario that you tested, but you most likely did not solve a more general problem. That's b/c you're not thinking in generality, you're in a debugging mindset, not a general mindset.

Me: OK, fine, you don't use a debugger, you think it's a waste of time. What do you do when you find a bug then?

Him: When I find a bug here's what I do:

  1. Read my code. Understand it. Document it.
  2. If a class or a method or a function is not coherent refactor it until it is.
  3. Add asserts. Use preconditions, post-conditions etc. Asserts are very effective.
  4. Add logging. When the program runs it should tell its user what it's doing, like you're reading a book. Don't assume the user understands the code, don't assume you understand the code. Let the program tell you exactly what it's doing, you will not regret it.
  5. Unit-Testing. Except for the most trivial getters and setters, you need to test everything. Most bugs can be found while unit-testing, or while writing the tests.
  6. Code review. Have someone else look at your code. When he/she asks you questions you'll understand your code better. Many times I found bugs when trying to explain what my code is doing to a reviewer.

Me: OK, dude, that's a lot of things. Are you sure this is the best use of your time?

Him: True, if you have a single bug at 8pm after a long day, and all you want to do is fix it and go home, you might get tempted to open a debugger and get rid of that thing already, right?

Me: yeah...

Him: Well, I think that this is when good developers show. A good developer needs to be self disciplined and realize that: every minute you waste on a debugger is a wasted minute. You'll never get your time back. While if you invest your time smartly in documentation, refactoring, asserting, logging, unit-testing and code reviews you're investing in a brighter future. It might be that this evening you'll get back home late and that is indeed sad, but I also guarantee you that you are not going to regret this and in the next couple of days not only that your coworkers think highly of you, but also you'll have much more free time since at this evening you solved not only one bug, but also a design issue and five other bugs.

Me: OK, that's a bit extreme for me. I can see why you're saying that using a debugger is a very short-term investment and that professionals should make long term investments, that's cool. But, isn't it a bit too extreme? I mean is there any good time to use a debugger at all? What about, for example when you inherit the code and you don't even know how it's supposed to run?

Him: Dude, in my team I'd not want to have you. If you want to read new code, print it and take it somewhere quiet. A debugger is not a Kindle.

So, stackoverflowers, what do you think of this approach? Is a debugger the mother of all evil?

flag
3  
This is probably one of the more asinine and inefficient approaches to Software development that I've heard. – James Mar 2 at 21:02
3  
I, no not a team "me", just inheritted an extremely complex project of over 250,000 lines of code. I am not printing that. – eduncan911 Mar 3 at 5:19
4  
"Of course not. Everyone makes mistakes,..." - Your coworker has obviously not met Jon Skeet. – Thomas Owens Jul 9 at 13:41
1  
Does your friend also turn compiler errors and warnings and fix those by inspection? – Roger Nolan Sep 8 at 11:29
show 6 more comments

51 Answers

prev 1 2
vote up 4 vote down

Sigh. If I go to the men's room, that's time spent I'll never see again. It doesn't solve anything in the long run, because I'll have to go again in a few hours. Just like using a debugger: I may accomplish something useful right now, but there's no long-term appreciation potential. Forbidding the use of the debugger is similar to locking the men's room door.

Except, of course, that there is some long-term appreciation potential in using a debugger to find a bug. Once I've found a bug, I can consider where else it's likely to be. I can remember the bug and the symptoms, and maybe find it later. I can benefit from finding out exactly what a certain bug is regardless of how I found it out.

link|flag
vote up 2 vote down

It doesn't have to be either-or: Use the debugger to step through to figure out what is happening, and if it makes sense to, add a unit test to make sure the bug doesn't come back.

link|flag
show 1 more comment
vote up 3 vote down

One of the risks of using debugging as a primary bug-fixing technique is that you can end up fixing targeted symptoms without fixing underlying problems. This is dangerous because each little patch adds unintended complexity and you can end up with a system that is no more robust or reliable but is much harder to maintain and fix because so much of it is held together with bailing wire, gaff tape, and chewing gum. This is not the route to quality software.

Nevertheless, your dogmatic friend is in error in shunning all debugging. There's only so much you can understand about the way your code works in vacuo. When your code malfunctions in the wild that is a prime opportunity to understand exactly what your code is doing in situ. In theory: theory and practice do not differ; in practice they do. In the real-world with real customers using your software there are conditions that can occur which you will never have anticipated. This will ALWAYS be true. The diversity of the world vastly exceeds the human mental capacity to model it in the abstract. A bug is your code talking to you, when that happens you need to listen. You need to dig in and find the cause, and this will lead to just as much, or more, improvement in understanding your code as reading code listings in a comfy chair by the fire at home.

What you do with that understanding, once acquired, is a different matter. Pursuing the defect to its root cause, fixing the underlying system defect, adding regression and unit tests, increasing documentation, and refactoring problematic code are all excellent ways to deal with code defects, but ignoring a key technique for tracking defects to their source is silly.

link|flag
vote up 2 vote down

Your friend is a little over the top. But one thing being overlooked here is that most debuggers aren't very good (for example, most debuggers don't allow you to travel backwards in time), and most programmers don't use a debugger. I think these facts are correlated.

When debugging C code with bad pointer invariants or other problems with linked data structures on the heap, I noticed a quantum leap in productivity when I moved from gdb to the Data Display Debugger (ddd). I'm now much more likely to use the debugger for these kinds of problems. But it still pisses me off that if I accidentally run the program too far, I can't easily go backwards. Time travel in debugging has been a solved problem for over 15 years.

So, no, the debugger isn't the root of all evil. But it's also not that helpful and it can be a distraction.

link|flag
vote up 0 vote down

This is a troll isn't it?

link|flag
vote up 2 vote down

I agree with 80% of what your friend had to say. But do take care to differentiate debuggers with profilers.

It is VERY rare that I have to fire up a debugger. Usually, if you see me using one it means that I am trying to nail some kind of pesky concurrency issue. Even then, I'd rather run the code in some kind of virtualization simulator (simics, for instance) that offers me better tool, or QEMU which offers me introspection with a little hacking. There are times when I suspect my compiler has just optimized something away, in which case the debugger is handy to prove my understanding of the asm dumps.

I've seen people who type 'gdb' the very second after seeing 'segmentation fault', even without looking at the code first or running it through something like valgrind. That kind of tactic becomes a vicious cycle that takes years to perfect.

Its often faster to use asserts, even printf debugging than it is to step through your code using some kind of a debugger. As Norman said, until I can actually step backwards, I really don't have much use for gdb or others.

The rules I set for myself are simple. Every time I make a change or introduce something new, I:

  • Make sure it actually works
  • Run the program through valgrind
  • Give the program unexpected input or usage, then replay steps 1 and 2
  • Commit a series of small changes that mount up to the revision I just made

This assures me (to a high degree) that any bug I find is most likely the fault of the current or previous change set, so its easy to find. 8/10 times, if you are turning to a debugger, you're doing so because you have no idea when the bug could have been introduced or where .. which points out a deficiency in your development practice.

Again, when I say 8/10 times, I also mean 8/10 bugs. Concurrency issues are in a whole other ball park than dereferencing a bogus pointer in a single process.

Also, I work mostly with C (not C++, etc) .. so my methods and thinking will really differ from others.

link|flag
vote up 2 vote down

Add logging. When the program runs it should tell its user what it's doing, like you're reading a book. Don't assume the user understands the code, don't assume you understand the code. Let the program tell you exactly what it's doing, you will not regret it.

To me this says he uses printf debugging essentially. What's the real, tangible difference between "let the program tell you exactly what it's doing" and "let the debugger tell you exactly what the program is doing"?

The benefit of the debugger here is that, while your time spent in it isn't reusable per se, you have the ability to iterate much more quickly. Perhaps you don't know if the information you're adding logging for is useful or not. The debugger can tell you that in a fraction of the time.

I've worked with people whose first step when encountering a problem is "look over the code". And it does work at times, but then there are also times when someone else can load up the debugger and catch the problem in a couple of minutes.

Debuggers are not the mother of all evil. Unwillingness to use a helpful tool because it hurts your ego as a developer is the mother of all evil.

link|flag
vote up 1 vote down

Been programming over 6 years and I still don't know how to properly using a debugger. "cout" has always served me just fine. Now that I think about it though, a debugger would be a lot quicker than trying to manually do a binary search on my code to find the line its crashing on.

link|flag
vote up 0 vote down

No, the debugger is not the mother of all evils.

There are much greater evils in this shattered world, and not all of these are daughters to a debugger. Even if we concentrate on bad code and bad programmers, it is pretty evident that you can produce one, or be one yourself, without ever using a debugger. Examples are abundant.

There are cases in which programmers produce obfuscated code, and use a debugger to understand what it does - "gain insight into the way the code works, and deeper intuition of the clockworks of the inner gears", as some may say. But, the infinite creativity of programmers cannot be stopped if they are forbidden to use a debugger. It was said that it is twice as difficult to debug than to code. So, if you apply all your talents in producing "clever" code, then you will probably want to use a debugger to compensate for your innovation and cleverness, but even if you are not given one, it would be tough to stop you from being clever and creative - in the bad sense of these words.

In my opinion, the way to understand the code is to make its understandability self evident - and yes, documentation, assertions and the such do help. Put your talents in producing understandable code, and you will prosper.

It is not that I never found a use for a debugger - this has been like this only in the past 20 years or so, in which I never found a debugger indispensable. I slowly gravitated towards the habit of not even installing a debugger. In later years, the tickle of the fiendish, shortcuts-seeker, desire to use a debugger was much lesser with the advent of excellent unit testing tools. When I have a bug, I simply write a test case to make it reappear, and if the test case does not reveal the fault, the emperors' old technique of divide and conquer is unbeatable. Write a test case for each of the components, and you will gain a real intuition on what the code does, and more importantly, what the code should do. After all, what the code should do is more important. You have much greater control of changing the code than changing the requirements.

I was not always this fortunate. Some of you may be familiar with a hack I once wrote - the terse editor - a full screen editor, featuring search and replace, cut and paste and the such. The neat thing about this hack is that the binary spans only 4096 bytes - including the text of a help screen. There were many nasty 8088 assembly tricks in there, including, dare I reveal the disgrace, self modifying code. But, even in writing this, I never used a debugger. Whenever I noticed something was wrong, I simply added documentation, explaining to myself where the code should be doing.

The real challenge is in dealing in cases in which you are not at liberty of changing the code - that is when you have to fix other people bugs. I noticed however that no one ever complains if you document his code, add test cases, assertions, enrich the code with reports etc. Just be careful of programmers' rage when they see their code refactored.

--Yossi Gil

PS I am probably the friend Ran was telling you guys about.

link|flag
vote up 0 vote down

Once you step into concurrency development, Debugger will start to show its deficiency once it brings you back and forth within the same function call having multiple threads accessing it.

I use debugger for a majority of main reasons:
i) watch how a specific variable's change (vs spam each change)
ii) display the entire object's info (vs spam your output)
ii) get a quick stack trace from a break point (vs putting in a hundred "i'm here!")
iii) windows service (argh!)

link|flag
vote up 0 vote down

linus isn't a fan of debuggers: http://lwn.net/2000/0914/a/lt-debugger.php3

I don't like debuggers. Never have, probably never will. I use gdb all the time, but I tend to use it not as a debugger, but as a disassembler on steroids that you can program.
link|flag
vote up 0 vote down

If such a bug happens in production DESPITE his efforts, then the question is WHY, and unless you have excellent logging or psycich powers you occasionally have to get information not accessible unless you peek inside.

i.e. a debugger...

link|flag
vote up 0 vote down

I wouldn't say debuggers are "the mother of all evil." However, I almost never use them myself; I use your friend's techniques. Especially since I took up heavy automated testing, I find a spend relatively little time debugging things.

link|flag
vote up 0 vote down

Your friend is right (to a good level of confidence). When you debug, you are using your time to fix a bug, not to fix and prevent it in the future. If you have to start a debugger, it means that your testsuite is too poor or unexistent, and this is a clear sign of trouble.

link|flag
vote up 0 vote down

Debugger Pro's

  • can find error very quickly - important when delivery is time-critical
  • helps give a quick glance of how inherited code works, step-by-step

Debugger Con's

  • can be overused/abused
  • encourages "firefighting" rather than writing good code, (i.e., one instance may be fixed, but root issue may still exist)
  • tend be used in lieu of Unit Tests/Logging/Refactoring

PintSizedCat, I think your friend is extremist. Maybe debugging isn't the greatest personal investment, but sometimes we have to make the deadline and concentrate on improving ourselves afterwards.

link|flag
vote up 1 vote down

I used to jump on the debugger as soon as I saw a bug, often wasting valuable time, but now before I start stepping through code, I make sure I think first about the issue, I understand at the very least the basics of the code I am trying to step trough, and once I have a clear picture in my head of what I want to look for, I use the debugger. There are some instances where the debugger can't help, (timing issues for example) and then you have to rely on other tools.

It's not the tool itself that's good or bad, what matters is how you use the tool.

link|flag
vote up 0 vote down

Some say that a debugger is the mother of all evil. What do you think of this approach?

That it is incorrect. A debugger is a useful tool, and it's foolish and antieconomic to refuse using it.

link|flag
vote up 0 vote down

In my academic experience, the use of a debugger was something that i tried to stay away from. Not because I wasn't aloud to use them - but because I figured that at this stage in programming career, where I'm learning ow to do things properly, debugging my code 'by hand' was a much more useful exercise than using a debugger to do it for me. Or at least I felt like it was. For one thing, it made me a more cautious programmer, and it improved by bug finding and fixing skills. It also made me better at reading code.

Of course, that was in school. Though I'm still in school - I can safely say that if I was in a work environment, I wouldn't hesitate to use a debugger. Time is money, after all.

link|flag
vote up 0 vote down

In most cases, there is no debugger installed on the user's machine! And the installed product is always the release version which doesn't contain debug information. So don't count on debuggers, sometimes, the only way is logging.

link|flag
vote up 0 vote down

When I was a TA for a first-semester programming class, the first assignment was using a debugger to step through Hello World with breakpoints and watches.

I also made a point that if I saw a getline() at the end of main(), your getting points taken off. Does ls pause before giving your prompt back? No. And neither will your command line app.

Solution? Set a breakpoint on the closing curly brace of main if you want to examine the program's output before it closes.

link|flag
vote up 0 vote down

I guess the real difference comes down to the following two attitudes, one good and one bad:

  1. I'm not really sure this is going to work, and I'm kind of in a hurry, but if it doesn't work, I can just fire up the debugger and find out where the problem is. (bad)
  2. I first want to understand this problem completely before I think up some possible solutions and choose the best one; if worse comes to worse I have a debugger I can use as a last resort (good).

Code reviews provide good selection processes to filter out the bad implementations and allow the good through.

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.