▲ | shmerl 6 days ago | |||||||
I kind of had the opposite experience. I used to rely mostly on printfs and etc. but started using debugger more. printf doesn't improve going up and down the call stacks in the debugger to analyze their chain (you'd have to spam debug printfs all around you expect this chain to happen to replace the debugger which would waste time). debugger is really powerful if you use it more than superficially. | ||||||||
▲ | boredtofears 5 days ago | parent [-] | |||||||
> you'd have to spam debug printfs all around you expect this chain to happen to replace the debugger which would waste time It's not wasting time, it's narrowing in on the things you know you need to look for and hiding everything else. With a debugger you have to do this step mentally every time you look at the debugger output. | ||||||||
|