Recent Entries:

Favorite Links

Why debuggers are bad

Tuesday, April 21st, 2009

Debuggers are useful

You set a breakpoint somewhere, you run your application, it stops where you want and let you inspect variables and more.

Debuggers are bad

Conclusion: Debuggers are good when you search for bugs and not as a development practice

Log statements are there forever and let you for instance trace code in a production environment where a debugger is usually not available.

Unit tests are there forever and let you run the same tests that you run in your debugger on and on.

Again: Debuggers are useful but don’t abuse them.

Tags: | Posted in General, Programming

Leave a Reply