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-20260822.1520/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."
  (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-sync-request)
                (nrepl-dict-get "value")))