Variable: warning-minimum-log-level
warning-minimum-log-level is a customizable variable defined in
warnings.el.gz.
Value
:warning
Documentation
Minimum severity level for logging a warning.
If a warning severity level is lower than this,
the warning is completely ignored.
Value must be lower or equal than warning-minimum-level,
because warnings not logged aren't displayed either.
This variable was added, or its default value changed, in Emacs 22.1.
Aliases
log-warning-minimum-level (obsolete since 28.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/warnings.el.gz
(defcustom warning-minimum-log-level :warning
"Minimum severity level for logging a warning.
If a warning severity level is lower than this,
the warning is completely ignored.
Value must be lower or equal than `warning-minimum-level',
because warnings not logged aren't displayed either."
:type '(choice (const :emergency) (const :error)
(const :warning) (const :debug))
:version "22.1")