Skip to content
Nicholas Vollmer edited this page Jul 2, 2023 · 6 revisions

How to change a command's log query

See the elpaca-log-command-queries variable and the following examples:

Filter by #latest search tag when the elpaca-rebuild command is run:

(setf (alist-get 'elpaca-rebuild elpaca-log-commmand-queries) "#latest"))

Don't display the log when the elpaca-delete command is run:

(setf (alist-get 'elpaca-delete elpaca-log-command-queries) 'silent))

How to disable logging

See the elpaca-log-functions user option.

Permanently (not recommended):

(setq elpaca-log-functions nil)

Temporarily:

(let ((elpaca-log-functions nil))
  ;; Do work
)
Clone this wiki locally