SET ECHO command

Controls whether GO and STEP commands are recorded in the log window when they are not subcommands. The presence of long sequences of GO and STEP commands clutters the log window and provides little additional information. SET ECHO makes it possible to suppress the display of these commands. The contents of the log file are unaffected. The initial setting is ON.

Read syntax diagramSkip visual syntax diagramSETECHOONOFF*keyword;
ON
Shows given commands in the log window.
OFF
Suppresses given commands in the log window.
keyword
Can be GO (with no operand) or STEP.
*
Specifies that the command is applied to the GO and STEP commands. This is the default.

Examples

  • Specify that the display of GO and STEP commands is suppressed.
    SET ECHO OFF;
  • Specify that GO and STEP commands are displayed.
    SET ECHO ON *;