Function: cider-log-framework-appender

cider-log-framework-appender is a byte-compiled function defined in cider-log.el.

Signature

(cider-log-framework-appender FRAMEWORK ID)

Documentation

Return the appender of the log FRAMEWORK with the given ID.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
;; Log Framework

(defun cider-log-framework-appender (framework id)
  "Return the appender of the log FRAMEWORK with the given ID."
  (seq-find (lambda (appender) (equal id (cider-log-appender-id appender)))
            (cider-log-framework-appenders framework)))