Function: consult--async-log
consult--async-log is a byte-compiled function defined in consult.el.
Signature
(consult--async-log FORMATTED &rest ARGS)
Documentation
Log FORMATTED ARGS to variable consult--async-log(var)/consult--async-log(fun).
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult--async-log (formatted &rest args)
"Log FORMATTED ARGS to variable `consult--async-log'."
(with-current-buffer (get-buffer-create consult--async-log)
(goto-char (point-max))
(insert (apply #'format formatted args))))