log

fun log(stck: StackTraceElement, format: Any, vararg args: Any?)

Log a user message. Best used to log a message or value to Logcat from user code

Parameters

stck

StackTraceElement with information about where this log was called (see Text.getCallingUserCodeFunction())

format

An object string to add to telemetry

args

The objects to format into the object format string


fun log(obj: Class<*>, format: Any, vararg args: Any?)

Log a user message. Best used to log a message or value to Logcat from user code

Parameters

obj

Class where this log was called (name will be prepended to message)

format

An object string to add to telemetry

args

The objects to format into the object format string


fun log(format: Any, vararg args: Any?)

Log a user message. Best used to log a message or value to Logcat from user code

Parameters

format

An object string to add to telemetry

args

The objects to format into the object format string