Function: cider-sync-request:log-inspect-event
cider-sync-request:log-inspect-event is a byte-compiled function
defined in cider-log.el.
Signature
(cider-sync-request:log-inspect-event FRAMEWORK APPENDER EVENT)
Documentation
Inspect the log event with the ID in the APPENDER of the log FRAMEWORK.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-sync-request:log-inspect-event (framework appender event)
"Inspect the log event with the ID in the APPENDER of the log FRAMEWORK."
(cider-ensure-op-supported "cider/log-inspect-event")
(thread-first `("op" "cider/log-inspect-event"
"framework" ,(cider-log-framework-id framework)
"appender" ,(cider-log-appender-id appender)
"event" ,(cider-log-event-id event))
(cider-nrepl-send-sync-request)
(nrepl-dict-get "value")))