Variable: auth-source-debug

auth-source-debug is a customizable variable defined in auth-source.el.gz.

Value

nil

Documentation

Whether auth-source should log debug messages.

If the value is nil, debug messages are not logged.

If the value is t, debug messages are logged with message. In that case, your authentication data will be in the clear (except for passwords).

If the value is a function, debug messages are logged by calling
 that function using the same arguments as message.

This variable was added, or its default value changed, in Emacs 23.2.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defcustom auth-source-debug nil
  "Whether auth-source should log debug messages.

If the value is nil, debug messages are not logged.

If the value is t, debug messages are logged with `message'.  In
that case, your authentication data will be in the clear (except
for passwords).

If the value is a function, debug messages are logged by calling
 that function using the same arguments as `message'."
  :version "23.2" ;; No Gnus
  :type '(choice
          :tag "auth-source debugging mode"
          (const :tag "Log using `message' to the *Messages* buffer" t)
          (const :tag "Log all trivia with `message' to the *Messages* buffer"
                 trivia)
          (function :tag "Function that takes arguments like `message'")
          (const :tag "Don't log anything" nil)))