Function: projectile--message-always

projectile--message-always is a byte-compiled function defined in projectile.el.

Signature

(projectile--message-always FORMAT-STRING &rest ARGS)

Documentation

Report FORMAT-STRING with ARGS as coming from Projectile.

The prefix without the projectile-verbose\= gate, for the messages that answer for something you did ask for but arrive later, out of a process sentinel or a timer - by then the prefix is the only thing saying which package is talking.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--message-always (format-string &rest args)
  "Report FORMAT-STRING with ARGS as coming from Projectile.

The prefix without the `projectile-verbose\\=' gate, for the messages that
answer for something you did ask for but arrive later, out of a process
sentinel or a timer - by then the prefix is the only thing saying which
package is talking."
  (message "%s%s" projectile--message-prefix
           (apply #'format format-string args)))