Function: cider-log-print-event
cider-log-print-event is an interactive and byte-compiled function
defined in cider-log.el.
Signature
(cider-log-print-event ARG1 ARG2 ARG3)
Documentation
Format the log EVENT of FRAMEWORK and APPENDER.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(transient-define-suffix cider-log-print-event (framework appender event)
"Format the log EVENT of FRAMEWORK and APPENDER."
:description "Pretty print log event at point"
:if #'cider-log-event-at-point
(interactive (list (cider-log--framework) (cider-log--appender) (cider-log-event-at-point)))
(if event
(cider-log-event--pretty-print framework appender event)
(user-error "No log event found at point")))