Function: org-roam-message
org-roam-message is a byte-compiled function defined in
org-roam-utils.el.
Signature
(org-roam-message FORMAT-STRING &rest ARGS)
Documentation
Pass FORMAT-STRING and ARGS to message when org-roam-verbose is t.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-utils.el
(defun org-roam-message (format-string &rest args)
"Pass FORMAT-STRING and ARGS to `message' when `org-roam-verbose' is t."
(when org-roam-verbose
(apply #'message `(,(concat "(org-roam) " format-string) ,@args))))