Function: cider-log--read-level

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

Signature

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

Documentation

Read a log level using PROMPT, INITIAL-INPUT and HISTORY.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--read-level (&optional prompt initial-input history)
  "Read a log level using PROMPT, INITIAL-INPUT and HISTORY."
  (let ((table (when cider-log-framework (cider-log-framework-level-names cider-log-framework))))
    (completing-read (or prompt "Level: ") table nil nil initial-input history)))