telemere/resources/signal-docstrings/spy!.txt

42 lines
1.6 KiB
Text
Raw Normal View History

2024-04-15 07:57:40 +00:00
"Spy" signal creator, emphasizing form + level.
API: [form] [level-or-opts form] => form's result (value/throw) (unconditional)
Default kind: `:spy`
Default level: `:info`
2024-04-15 07:57:40 +00:00
When filtering conditions are met [4], creates a Telemere signal [3] and
2024-04-12 12:57:24 +00:00
dispatches it to registered handlers for processing (e.g. writing to
console/file/queue/db, etc.).
Examples:
(spy! (+ 1 2)) ; %> {:kind :trace, :level :info, :run-form '(+ 1 2),
; :run-val 3, :run-nsecs <int>, :parent {:keys [id uid]}
; :msg "(+ 1 2) => 3" ...}
(spy! ::my-id (+ 1 2)) ; %> {... :id ::my-id ...}
(spy!
{:let [x "x"] ; Available to `:data` and `:msg`
:data {:x x}}
(+ 1 2)) ; %> {... :data {x "x"}, :msg_ "My msg: x" ...}
Tips:
- Test using `with-signal`: (with-signal (spy! ...)).
2024-04-15 07:57:40 +00:00
- Supports the same options [2] as other signals [1].
2024-04-15 07:57:40 +00:00
- Identical to `trace!`, but emphasizing form + level rather than form + id.
- Useful for debugging/monitoring forms, and tracing (nested) execution flow.
2024-04-12 12:57:24 +00:00
- Execution of `form` arg may create additional (nested) signals.
Each signal's `:parent` key will indicate its immediate parent.
- Can be useful to wrap with `catch->error!`:
(catch->error! ::error-id (spy! ...)).
2024-04-15 07:57:40 +00:00
-------------------------------------------------------------------
[1] See `help:signal-creators` - (`signal!`, `log!`, `event!`, ...)
[2] See `help:signal-options` - {:keys [kind level id data ...]}
[3] See `help:signal-content` - {:keys [kind level id data ...]}
[4] See `help:signal-flow` - (filters, handling, etc.)