Function: cider-log--current-framework
cider-log--current-framework is a byte-compiled function defined in
cider-log.el.
Signature
(cider-log--current-framework)
Documentation
Return the log framework by the name bound to cider-log-framework-name(var)/cider-log-framework-name(fun).
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--current-framework ()
"Return the log framework by the name bound to `cider-log-framework-name'."
(when cider-log-framework-name
(let ((frameworks (cider-sync-request:log-frameworks)))
(cider-log-framework-by-name frameworks cider-log-framework-name))))