% SET TRACE [option, option, ...]
[NO]UNP
Aliases: UNPARSE, SRC, SOURCE, NOUNPARSE, NOSRC, NOSOURCE |
Trace, or do not trace, each following statement.
% SET TRACE UNPARSE writes each statement to the log as it executes. The statement is actually reconstituted (or UNPARSED) from the internal compiled AST form. |
[NO]VARIABLES
Alias: VARS, NOVARS |
Write, or do not write, variable values, that the generator either accesses or updates, to the log. |
[NO]EVALMESSAGES
Aliases: EVALMESS, EVAL, NOEVALMESS, NOEVAL |
Write, or do not write, the result of evaluation expressions to the log. |
[NO]LASTSTMTS|ALL|NONE
Alias: LAST, NOLAST, ON, OFF |
Turns off, or turn off, the continuous trace recording of the results from UNPARSE, EVALMESS and VARS trace.
% SET TRACE LAST is very useful when you encounter an infinite loop or an severe error. It records the last 50 statements and variable values executed and writes them to the log when the MFG terminates from an exception, from the user pressing Ctrl+Break, or from a % SET FATAL. |
ALL|NONE | Activates, or deactivate, all trace options. |
INFO | Trace back the % SET ERROR, FATAL, WARNING, INFO messages. This function is for upward compatibility. We recommend that you use % SET TRACEBACK INFO instead. |
NOINFO
Aliases: Noinfo, noinfo |
Trace back the % SET ERROR, FATAL, WARNING, INFO messages. This function is for upward compatibility. We recommend that you use % SET TRACEBACK INFO instead. |
Comments: