-
-
Notifications
You must be signed in to change notification settings - Fork 43
Logging
Nicholas Vollmer edited this page Jul 2, 2023
·
6 revisions
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))
See the elpaca-log-functions
user option.
Permanently (not recommended):
(setq elpaca-log-functions nil)
Temporarily:
(let ((elpaca-log-functions nil))
;; Do work
)