146

I've been a software developer for over twenty years, programming in C, Perl, SQL, Java, PHP, JavaScript, and recently Python. I've never had a problem I could not debug using some careful thought, and well-placed debugging print statements.

I respect that many people say that my techniques are primitive, and using a real debugger in an IDE is much better. Yet from my observation, IDE users don't appear to debug faster or more successfully than I can, using my stone knives and bear skins. I'm sincerely open to learning the right tools, I've just never been shown a compelling advantage to using visual debuggers.

Moreover, I have never read a tutorial or book that showed how to debug effectively using an IDE, beyond the basics of how to set breakpoints and display the contents of variables.

What am I missing? What makes IDE debugging tools so much more effective than thoughtful use of diagnostic print statements?

Can you suggest resources (tutorials, books, screencasts) that show the finer techniques of IDE debugging?


Sweet answers! Thanks much to everyone for taking the time. Very illuminating. I voted up many, and voted none down.

Some notable points:

  • Debuggers can help me do ad hoc inspection or alteration of variables, code, or any other aspect of the runtime environment, whereas manual debugging requires me to stop, edit, and re-execute the application (possibly requiring recompilation).
  • Debuggers can attach to a running process or use a crash dump, whereas with manual debugging, "steps to reproduce" a defect are necessary.
  • Debuggers can display complex data structures, multi-threaded environments, or full runtime stacks easily and in a more readable manner.
  • Debuggers offer many ways to reduce the time and repetitive work to do almost any debugging tasks.
  • Visual debuggers and console debuggers are both useful, and have many features in common.
  • A visual debugger integrated into an IDE also gives you convenient access to smart editing and all the other features of the IDE, in a single integrated development environment (hence the name).
Bill Karwin
  • 538,548
  • 86
  • 673
  • 828
  • 14
    I think you're falsely assuming that an IDE is required for using a debugger? A debugger is an invaluable tool whether it is used inside an IDE or not. – codelogic Jan 09 '09 at 00:32
  • I agree, The question is almost claiming that you can't debug with a debugger in an IDE this is not the case. You can run a debugger with or without an IDE, I'm sure he knows that though :) Maybe he is asking about visual debuggers specificly? – hhafez Jan 09 '09 at 00:35
  • Yes, visual debuggers. I also know of non-visual debuggers such as gdb, but these don't get the same type of advocacy. – Bill Karwin Jan 09 '09 at 00:36
  • I think the main issue with your question is that you mistake IDE for debugger. You ask about debugging in IDE yet you equate IDE with debugger and 'non-IDE' seems to mean not using debugger. IDE != debugger. I hate IDE but I like debuggers, to answer your question I would need to explain the different points for IDE and debugger. It's like asking: "Is earth round or can I just buy bicycle?" – stefanB Mar 03 '10 at 00:33
  • 6
    @stefanB: I received many good answers to my question, which shows that you're being needlessly pedantic. – Bill Karwin Mar 03 '10 at 01:25
  • @Bill if you scrall down read the answers, you will find that ppl pointing out that they are talking about debuggers not necessarily about IDE debuggers, but otherwise it's not a big thing. – stefanB Mar 03 '10 at 03:21
  • And did the answers change your mind somehow? Are you still doing the good old print and re-run (which is my preferred method, too) or did you change to IDE debugging? – acme Feb 20 '12 at 16:09
  • @acme: I appreciate the clear understanding of the advantages of IDE's, but I still find I can write and debug code just as quickly with my methods. – Bill Karwin Feb 20 '12 at 17:37
  • @BillKarwin, One **advantage** of stone knives is that you don't have to deal with other people's Heisenbugs. – Pacerier Jan 22 '15 at 04:31
  • @Pacerier, do you mean bugs that are masked when run in the IDE? Yeah, those are troublesome. – Bill Karwin Jan 22 '15 at 06:47
  • @BillKarwin, Yea, especially bugs with the debugger itself. – Pacerier Jan 23 '15 at 03:56

29 Answers29

113

Some examples of some abilities that an IDE debugger will give you over trace messages in code:

  • View the call stack at any point in time, giving you a context for your current stack frame.
  • Step into libraries that you are not able to re-compile for the purposes of adding traces (assuming you have access to the debug symbols)
  • Change variable values while the program is running
  • Edit and continue - the ability to change code while it is running and immediately see the results of the change
  • Be able to watch variables, seeing when they change
  • Be able to skip or repeat sections of code, to see how the code will perform. This allows you to test out theoretical changes before making them.
  • Examine memory contents in real-time
  • Alert you when certain exceptions are thrown, even if they are handled by the application.
  • Conditional breakpointing; stopping the application only in exceptional circumstances to allow you to analyse the stack and variables.
  • View the thread context in multi-threaded applications, which can be difficult to achieve with tracing (as the traces from different threads will be interleaved in the output).

In summary, print statements are (generally) static and you'll need to re-compile to get additional information if your original statements weren't detailed enough. The IDE removes this static barrier, giving you a dynamic toolkit at your fingertips.

When I first started coding, I couldn't understand what the big deal with debuggers was and I thought I could achieve anything with tracing (granted, that was on unix and the debugger was GDB). But once you learn how to properly use a graphical debugger, you don't want to go back to print statements.

LeopardSkinPillBoxHat
  • 28,915
  • 15
  • 75
  • 111
  • 3
    The dynamic debugging aspect is a good point. – Bill Karwin Jan 09 '09 at 01:16
  • 2
    Handier than watches, you can also hover over a variable name while stepping through code and you get a tooltip of the value. You can even change that value by clicking into the tooltip. That ruxx0rs. – Jon Davis Jan 09 '09 at 01:39
  • The bulk of these are properties of interactive debuggers, with or without a IDE. I.e, everything on that list (with the possible exception of change code in place) is possible with GDB. – dmckee --- ex-moderator kitten Jan 09 '09 at 02:04
  • 1
    Yes, but the OP asked "What makes IDE debugging tools so much more effective than thoughtful use of diagnostic print statements?". I was comparing IDE debugging tools vs. print statements, not IDE debugging vs. console debugging. – LeopardSkinPillBoxHat Jan 09 '09 at 02:11
  • Edit and Continue is an extremely powerful tool. I really wish more compilers would support it. Can it enable bad habits? Sure. Even source control can enable bad development practices. E&C enables programmers to be a hell of a lot more effective tracking down problems. – darron Jan 09 '09 at 12:49
  • As of PHP5 you can also print a call stack any place you see fit, just use "new Exception()->getTraceAsString()". Developing server-side apps there are cases when print or mail beats any debugger. – inkredibl May 27 '09 at 12:29
35
  • An IDE debugger lets you change the values of variables at run-time.

  • An IDE debugger lets you see the value of variables you didn't know you wanted to see when execution began.

  • An IDE debugger lets you see the call stack and examine the state of the function passed weird values. (think this function is called from hundreds of places, you don't know where these weird values are coming from)

  • An IDE debugger lets you conditionally break execution at any point in code, based on a condition, not a line number.

  • An IDE debugger will let you examine the state of the program in the case of an unhandled exception instead of just crapping out.

recursive
  • 83,943
  • 34
  • 151
  • 241
  • 1
    @Joe, in the context of Bill's question, I think they _are_ equivalent. Bill's talking about printf debugging. Whether the debugger is integrated with the editor and the compiler is immaterial at that point. – Rob Kennedy Jan 09 '09 at 00:15
  • 1
    the thing is that gdb, which is not an IDE debugger, has all these features – Tamas Czinege Jan 09 '09 at 00:36
  • The question was about IDE debuggers vs print style debugging, so I'll leave it as it is. – recursive Jan 09 '09 at 00:38
  • Yes, those are very valid advantages of debuggers. I understand these features are available in console debuggers too, but they are certainly good answers to my question. – Bill Karwin Jan 09 '09 at 01:15
17

Here's one thing that you definitely cannot debug with "print" statement, which is when a customer brings you memory dump and says "your program crashed, can you tell me why?"

galets
  • 17,802
  • 19
  • 72
  • 101
14
  • Print statements all through your code reduces readability.
  • Adding and removing them for debug purposes only is time consuming
  • Debuggers track the call stack making it easy to see where you are
  • Variables can be modified on the fly
  • Adhoc commands can be executed during a pause in execution to assist diagnosing
  • Can be used IN CONJUNCTION with print statements : Debug.Write("...")
DarkwingDuck
  • 2,686
  • 24
  • 29
  • 1
    Thanks for that list. Not all those points are compelling advantages of visual debugging. E.g. I can print a stack trace pretty easily in many language environments. – Bill Karwin Jan 09 '09 at 01:26
  • 1
    for #2: connecting a debugger to the server may be even more time consuming at times :) – inkredibl May 27 '09 at 14:08
9

I think debugging using print statements is a lost art, and very important for every developer to learn. Once you know how to do that, certain classes of bugs become much easier to debug that way than through an IDE. Programmers who know this technique also have a really good feel of what's useful information to put in a log message (not to mention you'll actually end up reading the log) for non-debugging purposes as well.

That said, you really should know how to use the step-through debugger, since for a different class of bugs it is WAY easier. I'll leave it up to the other excellent answers already posted to explain why :)

rmeador
  • 25,504
  • 18
  • 62
  • 103
  • Agreed, and thanks for the perspective. Just because advanced visual debuggers are useful, does not mean they're the best choice for all tasks. Just like any tool, they have their sweet spot. – Bill Karwin Jan 09 '09 at 01:34
  • Agree on that, using print is an important skill. Saved me lots of times when I've only had a limited toolset where it was just possible to edit a file and run it (that's especially true for web development). – inkredibl May 27 '09 at 14:19
  • 2
    Also, using print is a MUST if you are fighting multithreaded race conditions. It's practically impossible to find these bugs using a breakpoint IDE debugger. – Radu094 Jun 17 '09 at 08:42
  • 1
    In my experience, adding print statements doesn't help that much in multithreaded situations since the print itself can cause some kind of thread synchronisation which changes the nature of the bug. – the_mandrill Nov 26 '12 at 13:20
  • I upvoted after reading the first sentence – TheIronKnuckle May 28 '13 at 04:11
6

Off the top of my head:

  1. Debugging complex objects - Debuggers allow you to step deep into an object's innards. If your object has, say, an array of array of complex objects, print statements will only get you so far.
  2. The ability to step past code - Debuggers will also allow you to skip past code you don't want to execute. True, you could do this manually as well, but it's that much more code you have to inject.
Kevin Pang
  • 41,172
  • 38
  • 121
  • 173
  • But I can do both of these things now using "manual" debugging... whether by injecting code or figuring out a maze-like series of IDE menu choices. – Bill Karwin Jan 09 '09 at 01:18
  • Yes, you can. But do you really want to? You asked for reasons why using an IDE to debug is better, not for things that are ONLY provided by an IDE. – Kevin Pang Jan 10 '09 at 01:26
  • Fair enough. Assuming one learns the menu incantation to use those features, then subsequently they are easier than having to write new debugging code every time. – Bill Karwin Jan 21 '09 at 18:32
  • 1
    @BillKarwin Not sure about other IDEs, but there are no "menu incantations" for skipping code execution in Visual Studio. You can just "drag" the current execution point to a new line. Placing a breakpoint is just as easy (click on the line number where you want it. I don't think I've ever gone to the menu for anything besides brining up the 'watch' window in VS, and that only needs to be done once (or if your window layout gets lost, or you close the watch window). – Grant Peters Dec 19 '12 at 01:03
4

As alternative to debug in IDE you can try great Google Chrome extension PHP Console with php library that allows to:

  • See errors & exception in Chrome JavaScript console & in notification popups.
  • Dump any type variable.
  • Execute PHP code remotely.
  • Protect access by password.
  • Group console logs by request.
  • Jump to error file:line in your text editor.
  • Copy error/debug data to clipboard (for testers).
barbushin
  • 5,165
  • 5
  • 37
  • 43
3

In my experience, simple printouts have one huge advantage that no one seems to mention.

The problem with an IDE debugger is that everything happens at real time. You halt the program at a certain time, then you step through the steps one at a time and it is impossible to go back if you suddenly want to see what happened before. This is completley at odds with how our brain works. The brain collects information, and gradually forms an oppinion. It might be necessary to iterate the events several times in doing so, but once you have stepped past a certain point, you cannot go back.

In contrast to this, a selected series of printouts/logging gives you a "spatial projection of the temporal events". It gives you a complete story of what happened, and you can go back and fourth several times very easily by just scrolling up and down. It makes it easy to answer questions like "did A occur before B happened". It can make you see patterns you wernt even looking for.

So in my experience. IDE and debuggers are fantastic tools to solve simple problems when something in one single call-stack went wrong, and explore the current state of the machine at a certain crash.

However, when we approach more difficoult problems where gradual changing of state is involved. Where for example one algorithm corrupted a data structure, that in turn caused anohter algorithm to fail. Or if we want to answer questions like "how often do this happen", "do things happen in the order and in the way as I imagine them to happen". etc. Then the "old fashined" logging/printout technique has a clear advantage.

The best things is to use either technique when it is most suitable, for example use logging/printouts to get to some bugs, and pause at a breakpoint where we need to explore the current state more in detail.

There are also hybrid approaches. For example, when you do console.log(object) you get a data-structure widget in the log that you can expand and explore more in detail.This is many times a clear advantage over a "dead" text log.

erobwen
  • 71
  • 3
3

I haven't been developing for nearly 20 years, but I find that using a IDE / debugger I can :

  • see all kinds of things I might not have thought to have included in a print statement
  • step through code to see if it matches the path I thought it would take
  • set variables to certain values to make code take certain branches
Kevin Davis
  • 2,698
  • 1
  • 22
  • 27
3

One reason to use the IDE might be that modern IDEs support more than simple breakpoints. For example, Visual Studio offers the following advanced debugging features:

  • define conditional breakpoints (break only if a condition is met, or only on the n-th time the statement at the breakpoint is executed)
  • break on an unhandled exception or whenever a (specific) ecxeption is to be thrown
  • change variable while debugging
  • repeating a piece of code by setting the next line to be executed
  • etc.

Also, when using the debugger, you won't have to remove all your print statements once you have finished debugging.

M4N
  • 94,805
  • 45
  • 217
  • 260
2

One thing that I'm surprised I haven't seen in another answer is that the 2 debugging methods are not mutually exclusive.

printf debugging can work quite nicely even if you're using a standard debugger (whether IDE based or not). In particular with a logging framework so you can leave all or most of in the released product to help with diagnosing customer problems.

As noted in pretty much all the other answers here, the key nice thing about a standard debugger is that it allows you to more easily examine (and potentially change) the details of the program state. You don't have to know up front what you might want to look at - it's all available at your fingertips (more or less).

Michael Burr
  • 333,147
  • 50
  • 533
  • 760
1

This is what I use most on VS.NET debugging windows:

  • Call stack, which is also a great way to figure out someone else's code
  • Locals & Watches.
  • Immediate window, which is basically a C# console and also lets me change variable contents, initialize stuff etc.
  • The ability to skip a line, set the next statement to be executed somewhere else.
  • The ability to hover over variables and have a tool-tip showing me their values.

In summary, it gives me a 360 degree view of the state of my executing code, not just a small window.

Never found a book teaching this kind of stuff, but then again, it seems to be quite simple, it's pretty much WYSIWYG.

Community
  • 1
  • 1
rodbv
  • 5,214
  • 4
  • 31
  • 31
1

Because debugging multi-threaded applications with print statements will drive you bananas. Yes you can still do it with print statements but you'd need a lot of them and unravelling the sequential print out of statements to emulate the multi-threaded executiong would take a long long time.

Human brains are only single-threaded unfortunately.

DarkwingDuck
  • 2,686
  • 24
  • 29
  • Yeah, one could prefix print strings with the thread number or something, or format the output in columns by thread (if there aren't too many). But I get your point. – Bill Karwin Jan 09 '09 at 01:28
  • 1
    One more thing to keep in mind is that sometimes the print() statement synchronizes threads. I saw once an issue where with debugging logs enabled the app was running okay, but after disabling them it crashed instantly and the thing we figured out was that the app was synchronizing on prints and that caused it to function correctly. – inkredibl May 27 '09 at 14:15
  • 1
    Actually, it has been my experience that a good log library and some cleverly formated print (non syncronized) statemens are sometimes the ONLY way to debug (and understand) some killer multi-threaded bugs. Breakpoints (and extra debug symbols added by the compiler) can change the environment of the bug to the point where it is impossible to find/reproduce/understand the race condition. – Radu094 Jun 17 '09 at 08:50
1

Advantages of a debugger over a printf (note not an IDE debugger but any debugger)

  1. Can set watchpoints. This is one of my favourite ways of finding memory corruptions

  2. Can debug a binary that you can't recompile at the moment

  3. Can debug a binary that takes a long time to recompile

  4. Can change variables on the fly

  5. Can call functions on the fly

  6. Doesn't have the problem where debug statemenets are not flushed and hence timing issue can not be debugged acuratly

  7. Debuggers help with core dumps, print statements dont'

hhafez
  • 38,949
  • 39
  • 113
  • 143
1

Since you asked for pointers to books... As far as Windows debugging goes, John Robbins has several editions of a good book on Windows debugging:

Debugging Applications for Microsoft .NET and Microsoft Windows

Note that the most recent edition (Debugging Microsoft .NET 2.0 Applications) is .NET only, so you might want an older one (like in the first link) if you want native code debugging (it covers both .NET and native).

Michael Burr
  • 333,147
  • 50
  • 533
  • 760
1

I personally feel the answer is as simple as "A integrated debugger/IDE gives you a wealth of different information quickly without the need for punching in commands. The information tends to be there in front of you without you haven't tell it what to show you.

The ease in which the information can be retrieved is what makes them better than just command-line debugging, or "printf" debugging.

OJ.
  • 28,944
  • 5
  • 56
  • 71
  • That's a good summary or general statement, matching the specific examples many other answers provided. – Bill Karwin Jan 09 '09 at 01:41
  • Cheers Bill. I feel that arguing feature vs feature is pointless as most of the time you can do what you need to do in both types of debugger. Integrated ones just make the process a lot simpler (if they're done well, as in the case of VS). – OJ. Jan 12 '09 at 05:51
0

Debugging in an IDE is invaluable in an environment where error logs and shell access are unavailable, such as a shared host. In that case, an IDE with a remote debugger is the only tool which allows you to do simple things such as view stderr or stdout.

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265
0

In addition to the many things that have been already mentioned, one of the most important advantages of a debugger over printf is that using printf statements assumes that you know in which function the bug resides. In many cases you don't, so you have to make a few guesses and add print statements to many other functions in order to localise it. The bug may be in framework code or somewhere far removed from where you think it is. In a debugger it is far easier to set breakpoints to examine the state in different areas of the code and at different points in time.

Also, a decent debugger will let you do printf-style debugging by attaching conditions and actions to breakpoints, so that you still retain the benefits of printf debugging, but without modifying the code.

the_mandrill
  • 29,792
  • 6
  • 64
  • 93
0

A problem with using print statements is it makes a mess of your code. IE, you have a function with 10 parts to it and you know it crashes somewhere, but you're not sure where. So you add in 10 extra print statements to pinpoint where the bug is. Once you've found and solved your bug, you now have to clean up by removing all of those print statements. Maybe you'll do that. Maybe you'll forget and it'll end up in production and your user's console will be full of debug prints.

ArtOfWarfare
  • 20,617
  • 19
  • 137
  • 193
0

I've used both prints and IDEs for debugging and I would much rather debug using an IDE. The only time for me when that doesn't work is in time critical situations (like debugging online games) where you litter the code with print statements and then look at the log files after it has gone horribly wrong. Then if you still cannot figure it out, add more prints and repeat.

KPexEA
  • 16,560
  • 16
  • 61
  • 78
0

Just wanted to mention a useful feature of a console debugger vs printf and vs debugger in an IDE.

You can attach to a remote application (obvioustly, compiled in DEBUG mode) and inspect its state dumping the debugger output to a file using POSIX tee utility. Compared to printf, you can choose where to output the state in run-time.

It helped me a lot when I was debugging Adobe Flash applications deployed in an agressive environment. You just need to define some actions that print required state in each breakpoint, start the console debugger with fdb | tee output.log, and walk through some breakpoints. After that you can print the log and analyse the information by thorough comparison of the state in different breakpoints.

Unfortunatelly, this feature [logging to a file] is rarely available in GUI debuggers, making developers compare the state of objects in their head.

By the way, my opinion is that one should plan where and what to debug before staring a debugger.

newtover
  • 31,286
  • 11
  • 84
  • 89
  • Thanks! But I'm not sure I agree that GUI debuggers lack remote debugging features. In fact, most do have this capability, but it's kind of a pain to set up. Anyway, I wonder if you have checked out DTrace - it sounds like you would like it. – Bill Karwin May 06 '10 at 15:59
  • @Bill Karwin: I meant the capability to log to a file =) – newtover May 06 '10 at 16:07
0

Wauw, do I like this question. I never dared to pose it...

It seems that people just have different ways of working. For me what works best is:

  • Having a solid mind model of my code, including memory management
  • Using instrumentation (like print statements) to follow what's happening.

I've earned my living programming for over 40 years now, working at non-trivial technical and scientific applications in C++ and Python daily, and I have the personal experience that a debugger doesn't help me a bit.

I don't say that's good. I don't say that's bad. I just want to share it.

Jacques de Hooge
  • 6,750
  • 2
  • 28
  • 45
  • 1
    Why do you think this is a good answer? And do you think this is a good question for Stackoverflow? – DavidG Mar 09 '16 at 11:56
  • I took me quite a while before I accepted that for some people debuggers don't work out optimally. I want to help others with the same mindset reach that point earlier. As for the question, I consider it helpful since it opens up a taboo... – Jacques de Hooge Mar 09 '16 at 12:54
  • I was hoping my leading question would help you come to the right conclusion, but unfortunaterly it seems not. This question is off-topic as it's primarily opinion based, you can even see that it is now closed (your answer caused the question to jump to the front page and got it enough attention that people realised it's not a good fit for SO). – DavidG Mar 09 '16 at 13:14
  • Do you know of any (high quality) fora (or perhaps tags in S.O.) where such a question would be well placed? – Jacques de Hooge Mar 09 '16 at 15:11
  • There is nowhere in the SO network where an opinion question is allowed I'm afraid. – DavidG Mar 09 '16 at 15:54
  • It is for that reason that I no longer contribute to SO. – Bill Karwin Mar 09 '16 at 21:10
0
  • A debugger can attach to a running process

  • Often easier to debug threaded code from a debugger

Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541
0

With an IDE debugger you can see the values of ALL the variables in the current scope (all the way up the call stack) whenever you halt execution.

Print statements can be great but dumping so much information to the screen at any given place can produce a whole lot of print statements.

Also, many IDE debuggers let you type in and evaluate methods, and evaluate members while you are halted, which further increases the amount of print statements you'd have to do.

I do feel that debuggers are better for some languages than for others however...

My general opinion is that IDE debuggers are absolutely, amazingly wonderful for managed languages like Java or C#, are fairly useful for C++, and are not very useful for scripting languages like Python (but it could be that I just haven't tried a good debugger for any scripting languages yet).

I absolutely love the debugger in IntelliJ IDEA when I do Java development. I just use print statements when I use Python.

TM.
  • 108,298
  • 33
  • 122
  • 127
  • Yep, I agree that a dynamic language allows you to skip the recompile step. You can just add another diagnostic print and go. I can imagine a dynamic debugger saves you more time if you have to recompile after every such edit. – Bill Karwin Jan 09 '09 at 01:43
0

As someone said above: Debugger != IDE.

gdb and (back in the day) TurboDebugger (stand-alone) work just fine for the languages they support[ed], thank you. (or an even older technology: Clipper debugger linked into the xBase executable itself) -- none of these required an IDE

Also, though C/++ coding is more rare, printf statements sometimes mask off the very bug you are trying to find! (initialization problems in auto vars on the stack, for instance, or memory allocation/alignment)

Finally, as others stated, you can use both. Some real-time-ish problems almost require a print, or at least a judicious "*video_dbg = ( is_good ? '+' : '-');" somewhere into video memory. My age is showing, this was under DOS :-)

TMTOWTDI

0

In addition to much of what the other posters have said, I really like stepping through one line at a time along with the computer, as it forces me to think about one line at a time. Often I will catch the bug without even looking at variable values simply because I am forced to look at it as I click the 'next line' button. However, I don't think my answer will help you, Bill, because you probably have this skill already.

As far as learning resources go, I haven't used any -- I just explore all the menus and options.

Nate Parsons
  • 14,431
  • 13
  • 51
  • 67
0

Is this even real question from real programmer?

Anyone who spent even 5 mins debugging with print statements and debugging with IDE - it will OCCUR to him/her without even asking!

0

Well another thing is that if you join a new old project and nobody really knows how the code is doing what it's doing, then you can't debug by echoing variables/objects/... b/c you have no idea what code is executed at all.

At my job I am facing exactly that kind of situation and visual XDebuging helps me getting an idea about what is going on and where, at all.

Best regards

Raffael

Raffael
  • 19,547
  • 15
  • 82
  • 160
-2

It's not just debugging. An IDE helps you build better software faster in a lot of ways:

  • refactoring tools
  • intellisense to make api's more discoverable, or remind of exact spelling/case of familiar items(not much use if you've used the same system for 15 years, but that's rare)
  • save on typing by autocompleting variable and class names
  • find certain kinds of errors before you even start to compile
  • Automatically jump to variable/method/class declarations/definitions, even if they're not in the same file or folder.
  • Break on unhandled and handled exceptions

I could go on.

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
  • 2
    errr... that was not the question. – vmarquez Jan 09 '09 at 00:14
  • 2
    Those are all good features of IDE's too, but most of them have to do with what could be termed "smart editing." I understand the value of a smart editor, but visual debugging was what I meant to ask about. – Bill Karwin Jan 09 '09 at 00:37
  • Although I do understand that having the debugger integrated with the smart editor and all those other features has value. – Bill Karwin Jan 09 '09 at 02:02