LoggerDelegate

interface LoggerDelegate

Interface declaring methods that needs to be implemented for a Logger delegate. Works in a way very similar to android.util.Log.

Functions

Link copied to clipboard
abstract fun debug(tag: String, msg: String, t: Throwable)
Send a DEBUG log message.
Link copied to clipboard
abstract fun error(tag: String, msg: String, t: Throwable)
Send a ERROR log message.
Link copied to clipboard
abstract fun info(tag: String, msg: String, t: Throwable)
Send a INFO log message.
Link copied to clipboard
abstract fun verbose(tag: String, msg: String, t: Throwable)
Send a VERBOSE log message.
Link copied to clipboard
abstract fun warn(tag: String, msg: String, t: Throwable)
Send a WARN log message.