chickadee » simple-logger » log-warning

log-warning fmt #!rest argsprocedure

Log warning messages using the configuration from the warning-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-warning "You've been warned!")

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