keen/log

Source
This is a standard module and does not need to be explicitly imported.
log-level enum
info
warn
error
Log severity. The log handler can use this any way it wants. The default log handler just prints the level at the beginning of each log.
show string(a log-level)
log[t] void(value t) t to-json
log[t0, t1] void(a t0, b t1) t0 to-json, t1 to-json
log[t0, t1, t2] void(a t0, b t1, c t2) t0 to-json, t1 to-json, t2 to-json
log[t0, t1, t2, t3] void(a t0, b t1, c t2, d t3) t0 to-json, t1 to-json, t2 to-json, t3 to-json
log[t0, t1, t2, t3, t4] void(a t0, b t1, c t2, d t3, e t4) t0 to-json, t1 to-json, t2 to-json, t3 to-json, t4 to-json
log[t0, t1, t2, t3, t4, t5] void(a t0, b t1, c t2, d t3, e t4, f t5) t0 to-json, t1 to-json, t2 to-json, t3 to-json, t4 to-json, t5 to-json
log-error[t] void(value t) t to-json
log-with-level void(level log-level, message string)
Sends a log to the current log handler. By default, this means the message is logged to the console.