Tracing is the process of step-by-step program execution. In the trace mode, the programmer sees the sequence of command execution and the values of variables at this step of the program execution, which makes it easier to detect errors. Tracing can be started and ended anywhere in the program, the program can stop at each command or breakpoints , tracing can be done with the procedure and without calls, and can also be done in the reverse order (step back).
See also
- Debugger
- Debugging