i

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

Writes log with INFO log level and provided tag.

Parameters

tag

Tag of the log record. Optional

message

Message to be written into log.


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

Writes log with INFO log level and empty tag.

Parameters

message

Message to be written into log.


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

Log exception with INFO log level and provided tag.

Parameters

tag

Tag of the log record. Optional

throwable

Error or Exception to be written into log.


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

Log exception with INFO log level and empty tag.

Parameters

throwable

Error or Exception to be written into log.


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

Writes log with INFO 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.i(message: () -> String)
fun i(message: () -> String)

Writes log with INFO log level and empty tag.

Parameters

message

Function that returns message to be written into log


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

Writes log with INFO 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.