Reduce active message-log-max; scale in debug mode

8kb of log isn't really necessary. We'll scale it up when debug mode is
on, instead.
This commit is contained in:
Henrik Lissner 2020-10-26 05:49:44 -04:00
parent ecddd347f3
commit 9e1ac0c0be
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 3 additions and 2 deletions

View file

@ -12,7 +12,8 @@
init-file-debug init-file-debug
jka-compr-verbose jka-compr-verbose
url-debug url-debug
use-package-verbose) use-package-verbose
(message-log-max . 16384))
"A list of variable to toggle on `doom-debug-mode'. "A list of variable to toggle on `doom-debug-mode'.
Each entry can be a variable symbol or a cons cell whose CAR is the variable Each entry can be a variable symbol or a cons cell whose CAR is the variable

View file

@ -160,7 +160,7 @@ users).")
;;; Emacs core configuration ;;; Emacs core configuration
;; lo', longer logs ahoy, so to reliably locate lapses in doom's logic later ;; lo', longer logs ahoy, so to reliably locate lapses in doom's logic later
(setq message-log-max 8192) (setq message-log-max 4096)
;; Reduce debug output, well, unless we've asked for it. ;; Reduce debug output, well, unless we've asked for it.
(setq debug-on-error doom-debug-p (setq debug-on-error doom-debug-p