ILogger

interface ILogger

Logger interface. You can implement a custom ILogger and pass it to Logger.logger implementation.

Inheritors

Functions

Link copied to clipboard
abstract fun d(tag: String, message: String, tr: Throwable? = null)

Logs a debug message.

Link copied to clipboard
abstract fun e(tag: String, message: String, tr: Throwable? = null)

Logs an error.

Link copied to clipboard
abstract fun i(tag: String, message: String, tr: Throwable? = null)

Logs an info.

Link copied to clipboard
abstract fun v(tag: String, message: String, tr: Throwable? = null)

Logs a verbose message.

Link copied to clipboard
abstract fun w(tag: String, message: String, tr: Throwable? = null)

Logs a warning.