5 ms·
Or use tests and/or a debugger. Which gives you all the listed benefits w/o an additional dependency.
by oweiler 2mo ago
Or use tests and/or a debugger. Which gives you all the listed benefits w/o an additional dependency.
- pjmlp 2mo agoYeah, the amount of wasted hours with 1960's teletype debugging. Ah but servers and embedded, that is why telemetry, execution traces, and debugger controlled action points exist.
- ollysb 2mo agoDifferent tools for different cases. Debuggers are great for a snapshot in time but print statements are better for seeing the execution flow.
- slifin 2mo agoAs a profession we need to phase out point in time debuggers and replace them with reverse debuggers or "time travel" debuggers
- ____mr____ 2mo agoI think PIT debuggers have their use especially with regards to altering state mid run, but this is the first time I've heard of reverse debugging and it seems incredibly useful, especially for multithreaded software I'm often debugging