
debugging

   Prints summary information about the debugger state

Arguments

Type
   Debugging

Description
   Prints the information about the tracing mode:  whether it is off,
   in creep or in leap mode.
   It then lists all procedures with a spypoint set, and then all breakpoints.
   The information is printed to the log_output stream.



Modes and Determinism
   debugging is det

Modules
   This predicate is sensitive to its module context (tool predicate, see @/2).

Examples
   
[eclipse 1]: debugging.
Debugger is switched off
yes.

[eclipse 2]: trace.
Debugger switched on - creep mode

[eclipse 3]: trace.
Debugger switched on - creep mode

[eclipse 4]: spy writeln/1.
spypoint added to writeln / 1.
yes.

[eclipse 6]: debugging.
Debug mode is debug
writeln/1        is being spied
yes.





See Also
   spy / 1, trace / 0, debug / 0, notrace / 0
