What is the proper name for doing debugging by adding ‘print’ statements [closed]

Yes – it’s known as printf() debugging, named after the ubiquitous C function: Used to describe debugging work done by inserting commands that output more or less carefully chosen status information at key points in the program flow, observing that information and deducing what’s wrong based on that information. — printf() debugging@everything2 Native users of … Read more