cogs/logging/log.scm

log!

(log! level arg-list)

Log directly on the specified level the with arguments, as a list

log/info!

(log/info! . args)

Log the arguments using the info target, i.e. log on INFO

log/warn!

(log/warn! . args)

Log the arguments using the warn target, i.e. log on WARN

log/debug!

(log/debug! . args)

Log the arguments using the debug target, i.e. log on DEBUG

log/error!

(log/error! . args)

Log the arguments using the error target, i.e. log on ERROR

log/trace!

(log/trace! . args)

Log the arguments using the trace target, i.e. log on TRACE