d

fun d(message: String, vararg args: Any?)

Send a debug log message.

Parameters

message

The message you would like logged.

args

The message args.


fun d(t: Throwable, message: String, vararg args: Any?)

Send a debug log message.

Parameters

t

An exception to log

message

The message you would like logged.

args

The message args.


fun d(throwable: Throwable? = null, message: () -> String)

Sends a debug log.

Parameters

throwable

Optional throwable.

message

The message.