Variable: use-package-verbose
use-package-verbose is a customizable variable defined in
use-package-core.el.gz.
Value
nil
Documentation
Whether to report about loading and configuration details.
If you customize this, then you should require the use-package
feature in files that use use-package, even if these files only
contain compiled expansions of the macros. If you don't do so,
then the expanded macros do their job silently.
Source Code
;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
(defcustom use-package-verbose nil
"Whether to report about loading and configuration details.
If you customize this, then you should require the `use-package'
feature in files that use `use-package', even if these files only
contain compiled expansions of the macros. If you don't do so,
then the expanded macros do their job silently."
:type '(choice (const :tag "Quiet, without catching errors" errors)
(const :tag "Quiet" nil)
(const :tag "Verbose" t)
(const :tag "Debug" debug))
:group 'use-package)