- log-info fmt #!rest argsprocedure
Log info messages using the configuration from the info-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-info "hey") (let ((some-variable "blah")) (log-info "The value of some-variable is ~a" some-variable))