Function: cider-sync-request:log-threads

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

Signature

(cider-sync-request:log-threads FRAMEWORK APPENDER)

Documentation

Return the threads for FRAMEWORK and APPENDER.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-sync-request:log-threads (framework appender)
  "Return the threads for FRAMEWORK and APPENDER."
  (cider-ensure-op-supported "cider/log-threads")
  (thread-first `("op" "cider/log-threads"
                  "framework" ,(cider-log-framework-id framework)
                  "appender" ,(cider-log-appender-id appender))
                (cider-nrepl-send-sync-request)
                (nrepl-dict-get "cider/log-threads")))