Function: hydra--complain
hydra--complain is a byte-compiled function defined in hydra.el.
Signature
(hydra--complain FORMAT-STRING &rest ARGS)
Documentation
Forward to (message FORMAT-STRING ARGS) unless hydra-verbose is nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hydra-20250316.1254/hydra.el
(defun hydra--complain (format-string &rest args)
"Forward to (`message' FORMAT-STRING ARGS) unless `hydra-verbose' is nil."
(if hydra-verbose
(apply #'error format-string args)
(apply #'message format-string args)))