LogHandler

interface LogHandler

Interface that allows handling logs manually.

See also

Functions

Link copied to clipboard
abstract fun d(tag: String, msg: String)

Log a message at the LogLevel.DEBUG level.

Link copied to clipboard
abstract fun e(tag: String, msg: String, throwable: Throwable?)

Log a message at the LogLevel.ERROR level.

Link copied to clipboard
abstract fun i(tag: String, msg: String)

Log a message at the LogLevel.INFO level.

Link copied to clipboard
abstract fun v(tag: String, msg: String)

Log a message at the LogLevel.VERBOSE level.

Link copied to clipboard
abstract fun w(tag: String, msg: String)

Log a message at the LogLevel.WARN level.