▲ | squirrellous 5 days ago | |||||||
IME console-based debuggers work great for single-threaded code without a lot of console output. They don't work that well otherwise. GUI-based debuggers can probably fix both of those issues. I just haven't really tried them as much. pdb is great for python, though. | ||||||||
▲ | MrDarcy 5 days ago | parent [-] | |||||||
I frequently use the go debugger to debug concurrent go routines. I haven’t found it any different than single threaded debugging. I simply use conditional break points to break when whatever go routine happens to be working on the struct I care about. Is there more to the issue? | ||||||||
|