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
.
ON
- Shows given commands in the log window.
OFF
- Suppresses given commands in the log window.
- keyword
- Can be
GO
(with no operand) orSTEP
. - *
- Specifies that the command is applied to the
GO
andSTEP
commands. This is the default.
Examples
- Specify that the display of
GO
andSTEP
commands is suppressed.SET ECHO OFF;
- Specify that
GO
andSTEP
commands are displayed.SET ECHO ON *;