Function: cider-log-appender-attached-p

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

Signature

(cider-log-appender-attached-p &optional FRAMEWORK APPENDER)

Documentation

Return non-nil if the log APPENDER is attached to FRAMEWORK, otherwise nil.

Source Code

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

(defun cider-log-appender-attached-p (&optional framework appender)
  "Return non-nil if the log APPENDER is attached to FRAMEWORK, otherwise nil."
  (when-let ((framework (or framework
                            (cider-log-framework-by-name
                             (cider-sync-request:log-frameworks)
                             cider-log-framework-name)))
             (appender-id (if appender
                              (cider-log-appender-id appender)
                            cider-log-appender-id)))
    (cider-log-framework-appender framework appender-id)))