d

fun Logger.d(tag: String?, message: String)
fun d(tag: String?, message: String)

Writes log with DEBUG log level and provided tag.

Parameters

tag

Tag of the log record. Optional

message

Message to be written into log.


fun Logger.d(message: String)
fun d(message: String)

Writes log with DEBUG log level and empty tag.

Parameters

message

Message to be written into log.


fun Logger.d(tag: String? = null, throwable: Throwable)
fun d(tag: String? = null, throwable: Throwable)

Log exception with DEBUG log level and provided tag.

Parameters

tag

Tag of the log record. Optional

throwable

Error or Exception to be written into log.


fun Logger.d(throwable: Throwable)
fun d(throwable: Throwable)

Log exception with DEBUG log level and empty tag.

Parameters

throwable

Error or Exception to be written into log.


fun Logger.d(tag: String?, message: () -> String)
fun d(tag: String?, message: () -> String)

Writes log with DEBUG log level and provided tag.

Parameters

tag

Tag of the log record. Optional

message

Function that returns message to be written into log


fun Logger.d(message: () -> String)
fun d(message: () -> String)

Writes log with DEBUG log level and empty tag.

Parameters

message

Function that returns message to be written into log


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

Writes log with DEBUG log level and provided tag.

Parameters

tag

Tag of the log record. Optional

throwable

Error or Exception. Optional

message

Message to be written into log.