- log-debug fmt #!rest argsprocedure
Log debug messages using the configuration from the debug-logger-config parameter.
fmt is a format string with placeholders (see the format string of printf) and args are values to replace placeholders in the format string. A new line character is implicitly added to fmt.
Examples:
(log-debug "Here!") (let ((some-variable "blah")) (log-debug "The value of some-variable is ~a" some-variable))