gdb Tips and Tricks
Sometimes you simply want the debugger to print some information but not pause the program. This effectively allows you to add logging statements on the fly. To do this, simply put
continue
at the end of your breakpoint commands, and execution will immediately resume.