[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Trace a message
I do not know of any way to TRACE a *message*. Since the object is the
actual functional part of SEND, there is no single place into which to
put the encapsulated definition.
You can trace a *method* (a handler for a message on some specific
flavor) using the extended function spec syntax:
(TRACE (:FUNCTION (FLAVOR:METHOD :MESSAGE FLAVOR)))
Because of the arcane way TRACE handles its arguments, you can also type
this as:
(TRACE #'(FLAVOR:METHOD :MESSAGE FLAVOR))