Depending on how your code is structured, VA's Next and Previous scope might be quite helpful here. If you are not familiar with these, you can use Alt+Up Arrow and Alt+Down Arrow to move to the top or bottom of the current scope block.
So, assuming you have something like this:
void DebuggingThis()
{
ActivityOne();
if(ActivityTwo())
{
DebugLogging();
MoreDebugLogging();
}
ActivityThree();
}
Next and Previous scope are ideal for jumping through the if block quickly and easily, similar to using CTRL+] to jump to the matching open or close bracket, but without having to first navigate to one of the brackets.
Bookmarks or VA Hashtags can also be very helpful for marking points you want to quickly and easily jump to, before and after the debugging code, so you can then set the execution point to the current cursor location.
If we already have the tools to make this even easier then this gets you up and running today, rather than putting in a feature request that may not happen for quite some time.