5.5.6 Running Trace
- Debug Run (Debug>Debug Project) your application.
- Pause the application.
- View the trace data in the Trace window
(Window>Debugging>Trace). For each
__TRACE
macro, the line of code following the macro will appear in the trace window each time it is passed. For each__LOG
macro, the selected variable in the line of code following the macro will appear in the trace window each time it is passed.Note: To trace multiple lines of code or variables, you must place a macro before each line/variable that you wish to trace.
Repeat these steps each time you change a trace point.