Function: projectile--message
projectile--message is a byte-compiled function defined in
projectile.el.
Signature
(projectile--message FORMAT-STRING &rest ARGS)
Documentation
Report FORMAT-STRING with ARGS as coming from Projectile, if permitted.
For what Projectile says off its own bat - a background index, a watch
that gave up, a file cached behind a find-file\=. Such a message is
prefixed, so it is clear where it came from when nothing was asked of
Projectile, and suppressed entirely when projectile-verbose\= is nil.
See projectile--message-always\= for the messages that must not be
suppressed.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--message (format-string &rest args)
"Report FORMAT-STRING with ARGS as coming from Projectile, if permitted.
For what Projectile says off its own bat - a background index, a watch
that gave up, a file cached behind a `find-file\\='. Such a message is
prefixed, so it is clear where it came from when nothing was asked of
Projectile, and suppressed entirely when `projectile-verbose\\=' is nil.
See `projectile--message-always\\=' for the messages that must not be
suppressed."
(when projectile-verbose
(apply #'projectile--message-always format-string args)))