Function: cider-log-framework-by-id
cider-log-framework-by-id is a byte-compiled function defined in
cider-log.el.
Signature
(cider-log-framework-by-id FRAMEWORKS ID)
Documentation
Find the log framework in FRAMEWORKS by ID.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log-framework-by-id (frameworks id)
"Find the log framework in FRAMEWORKS by ID."
(seq-find (lambda (framework) (equal id (cider-log-framework-id framework))) frameworks))