Function: cider-log--read-loggers

cider-log--read-loggers is a byte-compiled function defined in cider-log.el.

Signature

(cider-log--read-loggers &optional PROMPT INITIAL-INPUT HISTORY)

Documentation

Read a list of loggers using PROMPT, INITIAL-INPUT and HISTORY.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--read-loggers (&optional prompt initial-input history)
  "Read a list of loggers using PROMPT, INITIAL-INPUT and HISTORY."
  (let ((table (when (cider-log-appender-attached-p)
                 (nrepl-dict-keys (cider-sync-request:log-loggers
                                   cider-log-framework cider-log-appender)))))
    (completing-read-multiple (or "Loggers: " prompt) table nil nil initial-input history)))