timberkt / com.github.ajalt.timberkt

Package com.github.ajalt.timberkt

Types

Timber

object Timber

Extensions for External Classes

timber.log.Timber.Tree

Functions

d

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

Log a debug exception and a message that will be evaluated lazily when the message is printed

fun d(t: Throwable?): Unit

e

fun e(t: Throwable? = null, message: () -> String): Unit

Log an error exception and a message that will be evaluated lazily when the message is printed

fun e(t: Throwable?): Unit

i

fun i(t: Throwable? = null, message: () -> String): Unit

Log an info exception and a message that will be evaluated lazily when the message is printed

fun i(t: Throwable?): Unit

v

fun v(t: Throwable? = null, message: () -> String): Unit

Log a verbose exception and a message that will be evaluated lazily when the message is printed

fun v(t: Throwable?): Unit

w

fun w(t: Throwable? = null, message: () -> String): Unit

Log a warning exception and a message that will be evaluated lazily when the message is printed

fun w(t: Throwable?): Unit

wtf

fun wtf(t: Throwable? = null, message: () -> String): Unit

Log an assert exception and a message that will be evaluated lazily when the message is printed

fun wtf(t: Throwable?): Unit