Function: org-unlogged-message

org-unlogged-message is a byte-compiled function defined in org-macs.el.

Signature

(org-unlogged-message &rest ARGS)

Documentation

Display a message, but avoid logging it in the *Messages* buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-unlogged-message (&rest args)
  "Display a message, but avoid logging it in the *Messages* buffer."
  (let ((message-log-max nil))
    (apply #'message args)))