Function: treemacs-log
treemacs-log is a macro defined in treemacs-logging.el.
Signature
(treemacs-log MSG &rest ARGS)
Documentation
Write an info/success log statement given format string MSG and ARGS.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-logging.el
(defmacro treemacs-log (msg &rest args)
"Write an info/success log statement given format string MSG and ARGS."
(declare (indent 1))
`(treemacs--do-log
(propertize "[Treemacs]" 'face 'font-lock-keyword-face)
,msg ,@args))