In chapter 5 of \"The Practice of Programming\" Brian Kernighan and Rob Pike write:
As a personal choice, we tend not to use debuggers beyond getting a st
I use debugger only as last possible solution, because with debugger I often have to trace tons of code which has nothing to do with my problem. So I prefer to use my intuition and place some prints at places where could be problem. With this I solve 99.9% bugs very quickly. No 3 day debugging here!