trace-all [Function]


Purpose

The trace-all function enables global tracing of productions.

Syntax

trace-all

Arguments

This function takes no arguments.

Value

The trace-all function returns t.

Remarks

When a traced production fires, Loom prints the name of the production and the triggering instance.

Examples

(defproduction P :when (:detects (A ?x)) :do ((print ?x))) 
(trace-all) ==> T 
(tellm (A Joe)) --> 
    Fire: P (|I|JOE) 
    |I|JOE

See Also

Last modified: Jun 1 1995