Comment by imron
2 hours ago
> Try debugging without breakpoints
Why would you need to give this up? I use breakpoints with terminal debuggers all the time.
2 hours ago
> Try debugging without breakpoints
Why would you need to give this up? I use breakpoints with terminal debuggers all the time.
Yea this take makes no sense. What in the world is wrong with debugging with breakpoints?
It is for many problems, especially concurrency related ones, much less powerful than trace points. But the issue I have seen is that some tools like gdb have unergonomic support for tracing so there I tend to use break points or printf debugging just because the tracing support is so bad in gdb.
It’s a particular subcategory of cork sniffing where you pick the hardest, dumbest way to do things because you’re a Real Developer
It actually said
> Debug your code without visual breakpoints
With ‘visual’ being the important aspect.
There's another section below your quote where the author also wrote:
The alternative to breakpoints is to study the output logs. He wrote:
Fair, I didn’t read that far as I got bored of the “thou shalt” nature of the thing.
Tbh it's the default way I start my app in, debug mode xD