[ Debugging | Reference Manual | Alphabetic Index ]

notrace

Switch the debugger off for subsequent top-level queries.

Description

Used to switch tracing mode off (the default). This disables printing of any trace information.

Modes and Determinism

Examples

Success:
      [eclipse]: [user].
       w(X) :- writeln(X).
       user compiled 44 bytes in 0.00 seconds
      yes.
      [eclipse]: trace.
      Debugger switched on - creep mode
      yes.
      [eclipse]: w(X = 2).
        (1) 0  CALL   w(_g54 = 2) (dbg)?- creep      % type c
      B (2) 1  CALL   writeln(_g54 = 2) (dbg)?- creep
      _g54 = 2
      B (2) 1  EXIT   writeln(_g54 = 2) (dbg)?- creep
        (1) 0  EXIT   w(_g54 = 2) (dbg)?- creep
      X = _g54
      yes.
      [eclipse]: notrace.
      Debugger switched off
      yes.
      [eclipse]: w(X = 2).
      _g54 = 2
      X = _g54
      yes.



See Also

nodebug / 0, trace / 0, trace / 1, debug / 0, debug / 1