fun Tree.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 Tree.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 Tree.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 Tree.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 Tree.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 Tree.wtf(t: Throwable? = null, message: () -> String): Unit
Log an assert exception and a message that will be evaluated lazily when the message is printed |