info

abstract fun info(vararg args: Any?)

console.info

Emit a warning message to the main logging system, sent to us by the JS console intrinsic; log message output is moderated via standard logging system mechanisms (i.e. on the JVM, this is SLF4J). The console.info method corresponds to the INFO level.

All args are converted to a string value before emission; all values are joined by the string " ".

Parameters

args

Arguments to emit as part of this log message.