chickadee » simple-logger » log-error

log-error fmt #!rest argsprocedure

Log error messages using the configuration from the error-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-error "KABOOM!")

(let ((some-variable "blah"))
  (log-error "The value of some-variable is ~a" some-variable))