logTmp

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

Deprecated

This method is for temporary debugging only.

Replace with

Log a user message temporarily. This method is marked as 'deprecated' to remind you to remove it before committing your code and for it to be picked up as part of static code analysis. It serves the same as a regular log() call.

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 logTmp(obj: Class<*>, format: Any, vararg args: Any?)

Deprecated

This method is for temporary debugging only.

Replace with

Log a user message temporarily. This method is marked as 'deprecated' to remind you to remove it before committing your code and for it to be picked up as part of static code analysis. It serves the same as a regular log() call.

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 logTmp(format: Any, vararg args: Any?)

Deprecated

This method is for temporary debugging only.

Replace with

Log a user message temporarily. This method is marked as 'deprecated' to remind you to remove it before committing your code and for it to be picked up as part of static code analysis. It serves the same as a regular log() call.

Parameters

format

An object string to add to telemetry

args

The objects to format into the object format string