Running Trace

  1. 1.Debug Run (Debug>Debug Project) your application.
  2. 2.Pause the application.
  3. 3.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.