Trace off

Command group Flag affected Reversible Execute on client Platform(s)
Debugger NO NO NO All

Syntax

Trace off

Description

This command turns off the trace mode at a point in a method. See Trace on for more information about trace mode and using the debugger.

Example

Open trace log 
#; the following lines are sent to the trace log ...
Trace on (Clear trace log )
For lCount from 1 to 5 step 1
  OK message {Sent to trace log}
End For
Trace off
# ...and the following line is not
OK message {Not sent to trace log}