interface Logger
Logger definition
abstract fun d(tag: Tag? = null, msg: Message, tr: Throwable? = null): Unit
Send a debug log message and log the exception. |
|
abstract fun e(tag: Tag? = null, msg: Message, tr: Throwable? = null): Unit
Send an error log message and log the exception. |
|
abstract fun i(tag: Tag? = null, msg: Message, tr: Throwable? = null): Unit
Send an info log message and log the exception. |
|
abstract fun v(tag: Tag? = null, msg: Message, tr: Throwable? = null): Unit
Send a verbose log message and log the exception. |
|
abstract fun w(tag: Tag? = null, msg: Message, tr: Throwable? = null): Unit
Send a warning log message and log the exception. |