|
|
|
|
|
by whartung
585 days ago
|
|
I trend more towards print debugging than breakpoints. To me the beauty of print debugging is you can see the flow, and see it quickly in contrast to the debugger. Simply with the debugger, a lot of the time is spent stepping past (at the moment) superfluous breakpoints. Step, step, step, step, …, step, step, BANG! Versus a quick BANG preceded by a trail of debris I can then postmortem. I use both, naturally, but prefer the crashes with a debris field than walking on eggs to potential disaster. |
|