Variable: byte-optimize-log

byte-optimize-log is a customizable variable defined in bytecomp.el.gz.

Value

nil

Documentation

If non-nil, the byte-compiler will log its optimizations.

If this is source, then only source-level optimizations will be logged. If it is byte, then only byte-level optimizations will be logged. The information is logged to byte-compile-log-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defcustom byte-optimize-log nil
  "If non-nil, the byte-compiler will log its optimizations.
If this is `source', then only source-level optimizations will be logged.
If it is `byte', then only byte-level optimizations will be logged.
The information is logged to `byte-compile-log-buffer'."
  :type '(choice (const :tag "none" nil)
		 (const :tag "all" t)
		 (const :tag "source-level" source)
		 (const :tag "byte-level" byte)))