▲ | Gigachad 6 days ago | |||||||
I've tried the interactive debuggers but I'm yet to find a situation where they worked better than just printing. I use an interactive console to test what stuff does, but inline in the app I've never had anything that printing wasn't the straightforward fast solution. | ||||||||
▲ | gdubs 6 days ago | parent | next [-] | |||||||
I'm not above the old print here or there but the value of an interactive debugger is being able to step and inspect the state of variables at all the different call sites, for instance. | ||||||||
| ||||||||
▲ | davemp 6 days ago | parent | prev [-] | |||||||
I’m only found them to be useful in gargantuan OOP piles where the context is really hard to keep in your head and getting to any given point in execution can take minutes. In those cases interactive debugging has been invaluable. | ||||||||
|