This function is called by trace. Prints to standard output, but
may be rebound to do anything you like. 'name' is optional.
(defn tracer "This function is called by trace. Prints to standard output, but may be rebound to do anything you like. 'name' is optional." [name value] (println (str "TRACE" (when name (str " " name)) ": " value)))
Comments top
No comments for tracer. Log in to add a comment.