Use your debug features
When debugging, it’s easy to get stuck using a single technique. Maybe you’re in a loop adding a log message, building, running, and testing.
There are other debug features available. Why not use them?
Build in debug/development mode. Turn on additional debug flags. Use verbose logging.
Attach a debugger. Inspect variables; review call stacks. Use the different types of breakpoints at your disposal.
This is also an opportunity to try out debug features you’ve never used before!