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 0 vote down

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

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

I think it's useful to point out that modern debuggers can be used for far more than just tracking down bugs.

It's a fair bet that the majority of your projects won't be isolated and will rely on external code, libraries that you haven't written (or which are not perfectly documented), or will interact with potentially unreliable services in the cloud. You could 'code blind' and hope that you cover all the potential side-effects in your unit tests or you could use your debugger to find out the exact interactions required to get your software working (and, yes, then produce your extra unit tests!).

If you're doing advanced code using threads or trying out a new algorithm that doesn't already have a reference implementation, I'd hate to have to exclusively rely on peer-review or reading my printouts. Sure, code defensively, but don't deny yourself possibly vital data by rejecting a solution out of hand.

Oh, and are you we going to get some feedback from your friend on this thread? ;)

link|flag
vote up 2 vote down

There are different approaches to programming. I use a different approach. For me data, code and its behaviour is all part of the program. Live data. Not just dead artifacts like source code in a file. I'm a Lisp programmer. I play around with data, algorithms, representations, etc. I write partly working software that gets extended during development. I don't write the code on paper. I write the code against a partly working system which I change until it does what it is supposed to do (display an email, get an email from a mail server, talks to an NNTP system, renders the image in some way, displays the dialog nicely, ...). So debugging is a part of this. But there is also the larger vision that one may understand and program against a spec for isolated problems (given this data, format it some way to HTML). But then there is the outside world (example: parse some data out of HTML files coming from a bunch of websites). There are specs for outside systems. Sometimes. Often the outside systems implement these specs in some special ways. Some specs and their implementations are evolving over time. Some are tested against a suite - some are not. The more the programming problem has to deal with unpredictable behaviour, the more there might be need for debugging tools.

One also needs to understand that there is also not a single 'debugger'. The debugger is a bunch of tools that help the developer to inspect and manipulate the current state of a running piece of software. If all the developers problems are such that he can predict the behaviour of a software system from static text files, he might never need one. As soon as the system gets larger, is designed using different principles, has lots of communication and lots of internal state, then the debugger gets useful. Very useful. For me the debugger is part of the tool suite for interactive software development. Those who don't develop interactively might have less need for debugging tools.

In fact I develop more complex software by developing debugging tools in parallel. Debugging tools that are adapted to the problem domain. For example for graph algorithms, I might write a special visualization routine to nicely render runtime representations of graphs.

link|flag
vote up 2 vote down

I find that in general, I agree with your friend with regard to how to prevent bugs from getting into your code. I also agree that spending less time in the debugger is a good thing. I'd quibble a little on the documentation point, because frequently the documentation -- even in the code -- is probably out of date if the code is under active development. On the other hand, using a debugger to find out why the code I just wrote to pass my unit test if it's not immediately obvious seems a lot better than going in and adding logging and assert statements (frankly this smacks of printf debugging) if the code doesn't call for it anyway. And, no, not everything needs to be logged nor does everything need to be asserted. In that case, I prefer using the debugger over adding the bloat to my code.

link|flag
vote up 52 vote down

Ain't debugging just "reading the code" with the ability to also see real life values of variables?

link|flag
1  
Isn't "Ain't" a made-up word? :-) – paxdiablo Mar 25 at 11:16
2  
Sure, but be pragmatic: as long as we all understand the message, ain't no problem. ;) – ojrac Apr 13 at 19:14
2  
Ain't ain't made up. – Rich Bradshaw Jun 4 at 13:00
show 2 more comments
vote up 1 vote down

Sounds to me like someone is cutting off their nose to spite their face. The debugger is the quickest route to comprehending what is going in the majority of cases. I fear that some people have been burnt by the debugger and rather than appreciate the trade-offs the debugger brings they've adopted a policy of "never again" which is kinda like throwing away your car cause it breaks down once and leaves you in a serious fix.

The human mind has a tendancy to add logic to any madness hence this "long term approach" this guy is using. Implicitly stating that your code isn't as clean as it could be or doesn't have enough tests as it should do if you use the debugger doesn't appear to be a thought through argument. Surely if you use the debugger you have more time to do these things?!?

However you are quite right to state that it is a little "evil". Stopping the program execution destroys certain diagnostics information that is precious where logging will not.

But, I believe that the biggest evil is not understanding or using all the tools at your disposal. In some cases automated tools like the debugger rock, in other cases some logging is better. You just need to work out which is the best tool for the job.

link|flag
vote up 2 vote down

I use the debugger to "watch the gears turn," then capture what I learned in a test.

I tell people that don't want to test: "We don't have time to skip that step." I would tell your friend the same thing about debugging to understand the bug.

link|flag
vote up 1 vote down

"I think that this is when good developers show" - let me guess: your friend is exhibit #1 of "good developer".

I don't disagree with the recommendations, but I think the very best developers know the rules and when to break them.

Sometimes I have a problem of needing to check my assumptions. The faster I fire up that debugger and find out what I've been assuming is correct has led me astray the sooner I can get on with it.

If a debugger will find that error under a tight deadline, I say "Let's debug."

link|flag
vote up 7 vote down

When I write code using TDD, I very rarely need to use a debugger. Because I run the tests every few lines of production code, I will notice immediately when something went broken, and I know what was the change that broke things, so I don't need a debugger to find out the reason.

It's only very rarely, when some obscure bug occurs and I have no clue why it happened, that I start up a debugger as the last hope. Then I put a breakpoint in a test that reproduces the bug and dig in deeper. Quite much can also be done by just adding temporary println() statements to print debug information at strategic points.

For example, in my current pet project (an application server with transparent persistence to object database - some highly complex problems), I have about 4400 SLOC production code and 7300 SLOC test code (Java), and I've used a debugger only once or twice. IIRC, one of those occasions was some bug in the system's internal database, related to locking during transaction commit - a hard to find bug.

Then there are also some kinds of bugs where a debugger does not help, but you can only use your own reasoning. Concurrency bugs because of inadequate synchronization are such. For example once I found a bug in Guice 1.0 where a method returned null even though it should never return null. The way to find out the reason was to read the code backwards and look at every assignment where that variable came from, while reasoning about the JVM's memory model that could that variable ever be null.

link|flag
1  
Yes, I use it when I need it. I have nothing personal against debuggers, it's just that I very rarely have need for them, at least in the code that I myself write. On the other hand, when exploring legacy code, debuggers are very useful for understanding the system. – Esko Luontola Mar 2 at 13:28
show 1 more comment
vote up 2 vote down

Hundreds of unit tests can run in less time one need to step thru a method.

Now, writing those tests has a cost, so a compromise has to be found somewhere.

link|flag
show 4 more comments
vote up 25 vote down

One thing not mentioned so far is that debuggers are also great tools for teaching you more about how your own code, and often more importantly, other peoples code works. You can see what is happening under the hood, dynamically, as it happens. Your friends philosophy to me is akin to an engineer designing a car without ever turning the engine over before the tires have been fitted. It just doesn't seem sensible.

I use unit testing, design by contract style asserts, debuggers, profilers, static analysis, and whatever else gives me the best quality result at the lowest cost. Debuggers aren't bad. Using them in place of proactive QA can be.

link|flag
vote up 5 vote down

Often I use a "step through" on a debugger to just check that code is going the right way and makes sense. It's by far the quickest way of checking that you are not adding unnecessary steps or making the code do weird looping backflips.

Debuggers can be handy if you've just laid down 300 lines of code on a prototype and accidentally left off a line terminator or left out a period. Sometimes these things are hard to spot by eye.

I think if you're leaning on debuggers to make stuff work there might be a case that you're over using them but I don't really see any problem with using a step-through sense check and a quick "whoops" catcher on dev work.

Maybe I'm wrong.

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

What bothers me about these arguments is the people who adopt a dogmatic approach towards software development. You must (or must not) do X or Y.

Back in the real world, X or Y is almost never a fixed requirement. Instead of taking absolute positions, every developer should look carefully at the goals and demands of each project, and then select the appropriate tools for that specific project. There's just no such thing as a "best practice" without any context.

The software development world needs less dogma and more pragmatism.

UPDATE: Reading the question again, another thought just occurred to me. Your friend is saying that a debugger is used to debug a program. But in reality, a debugger is used to visualise and hopefully understand the program. That feeds useful information back into the debugging process, but it isn't actually debugging. So maybe if we used the term "visualiser" instead of "debugger", there would be less resistance to using the tool.

link|flag
1  
Yeah, Totally Agree. Though I suspect all these dogmas were raised by highly pragmatic people who saw lots of less-than-competent programmers do many stupid things. – hasen j Apr 13 at 18:37
show 2 more comments
vote up 0 vote down

I don't know...If I'm too stupid to get my Unit test running, I need to debug it to see where I am actually going wrong. A few times my intelligence suffices to get that particular piece of code running with assrtions and all, in the other cases I will use the debugger to get me head (and subsequently the code) sorted.

link|flag
vote up 8 vote down

The steps above are all important and necessary for the development of proper code. However, I can guarantee that you could have done steps 1 - 5 (and sometimes even 6) perfectly, and you still don't know why your unit tests are failing. This is where the debugger can be a useful tool.

Your friend also risks resorting to "carpet-logging" where every two lines are logged to try and get some understanding of what on earth is happening. Inevitably (after 10pm) the developer will forget to remove the logging code and end up committing his code (with a few hundred pointless logging messages) into SVN. This completely pollutes your code, making it impossible both to read and to parse log messages for errors.

In my opinion, debugging should not be an alternative for unit tests, but it is certainly a tool to use when necessary. Most development environments provide really sophisticated debugging tools, including on the fly modification of variables, conditional watches, etc. All these things can help you productively trace bugs.

link|flag
vote up 2 vote down

An interesting philosophy. If it works for him, so much the better -- one of my colleagues does believe that code should just work, the first time and every time. He built both ends of an IR remote controller, in assembly language, and wouldn't you know it worked flawlessly from the start.

For the rest of us mere mortals, however, I'm a fan of using every tool at my disposal, starting with my brain, the best practices that have proven themselves over the years, my colleagues, and on the rare occasions an error makes it through a compile (heavy sarcasm here!), a debugger.

It's also helpful to step through code one line at a time, to ensure it's doing what you expect it to do. Sometimes you get the right answer for the wrong reasons, and it's important to understand that. Black-box testing is best left to the customer QA department.

P.S. I suppose any discussion of debugging is incomplete without a reference to printf(). So, just for completeness:

printf() : debugger :: darts : nanosurgery
link|flag
show 10 more comments
vote up 1 vote down

Different people work best in different ways, if his code is maintainable and off good quality then why change a winning formula, but that dosn't mean you should stop useing debuggers if they work for you. Although if his strategy really works it might be worth a try, maybe it works for you too.

link|flag
vote up 3 vote down

It rather depends - at work last year, I was using Java and JUnit, and didn't need to use a debugger once. For the last few weeks, I've been working in C and often had to use a debugger - a segfault has much less information than a Java stack trace. Every case the debugger found would have caused a class cast or null pointer exception in Java, giving the exact information that the debugger gave.

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

short answer: No

long answer: Asserts/logging/debugging is all a type of testing your code. Asserts are only used in the most extreme cases. object can't be zero. If you have them in a production software you are doing it wrong. Logging to find out what the user did. This is sometimes handy but not always needed. And to repreduce the bug you have to find out where the bug originated by inputting the same variables as in the log. Time consuming and you are making your code twice as long (logging each statement)

What I do is test small portions of code using the debugger, stepping through a function. Logging is used if I or the user will ever read them, if not don't implement.

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

So it sounds like when your friend has a bug he just changes things until it goes away?

I'm with you I think. He'd be far better off using a debugger to direct his activity towards the actual fault rather than changing everything he can think of and hoping the bug will disappear.

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

In some cases you won't find the bug no matter how hard you stare at it. If using a debugger is considered bad, then i'm happy to be bad and actually get some spare time. If your friend is happy with his debugger allergy, that's his problem.

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.