Logger

interface Logger(source)

Inheritors

Types

Link copied to clipboard
object Companion : Logger

Functions

Link copied to clipboard
abstract fun a(throwable: Throwable? = null, message: () -> String)

Send a ASSERT(7) log message.

Link copied to clipboard
abstract fun d(throwable: Throwable? = null, message: () -> String)

Send a DEBUG(3) log message.

Link copied to clipboard
abstract fun e(throwable: Throwable? = null, message: () -> String)

Send a ERROR(6) log message.

Link copied to clipboard
abstract fun i(throwable: Throwable? = null, message: () -> String)

Send a INFO(4) log message.

Link copied to clipboard
abstract fun v(throwable: Throwable? = null, message: () -> String)

Send a VERBOSE(2) log message.

Link copied to clipboard
abstract fun w(throwable: Throwable? = null, message: () -> String)

Send a WARN(5) log message.

Link copied to clipboard
abstract fun withTag(tag: String): Logger

Creates a logger with the specified tag