log

fun log(key: String, value: String)

Logs a key-value pair to all registered backends.

Parameters

key

The caption/label for the data.

value

The string value to display.


fun log(key: String, value: Any?)

Logs a key-value pair to all registered backends, automatically calling toString().

Parameters

key

The caption/label for the data.

value

The object to display.


fun log(line: String)

Logs a raw string line to all registered backends.

Parameters

line

The string line to display.