trace

abstract fun trace(lazyMessage: () -> String?)

Performs a Level.TRACE level Logging, of the String message, computed by invoking lazyMessage lambda.

This type of logging should never be compiled into an application except during development. This logging will be stripped off at compile-time in release builds

Parameters

lazyMessage

the lambda that is lazily executed, if corresponding level of logging is enabled