Function: cider-sync-request:log-format-event

cider-sync-request:log-format-event is a byte-compiled function defined in cider-log.el.

Signature

(cider-sync-request:log-format-event FRAMEWORK APPENDER EVENT)

Documentation

Format the log EVENT from the APPENDER of the log FRAMEWORK.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-sync-request:log-format-event (framework appender event)
  "Format the log EVENT from the APPENDER of the log FRAMEWORK."
  (cider-ensure-op-supported "cider/log-format-event")
  (thread-first
    `("op" "cider/log-format-event"
      "framework" ,(cider-log-framework-id framework)
      "appender" ,(cider-log-appender-id appender)
      "event" ,(cider-log-event-id event)
      ,@(cider--nrepl-print-request-plist fill-column))
    (cider-nrepl-send-sync-request)
    (nrepl-dict-get "cider/log-format-event")))