ILogger

interface ILogger

Functions

Link copied to clipboard
abstract fun debug(TAG: String, msg: String)

Default implementation, meant to be overridden. Wraps a call to Log.d

Link copied to clipboard
abstract fun error(TAG: String, msg: String)
abstract fun error(    TAG: String,     msg: String,     e: Throwable)

Default implementation, meant to be overridden. Wraps a call to Lo"$cls.$method"e

Link copied to clipboard
abstract fun info(TAG: String, msg: String)

Default implementation, meant to be overridden by the user. Wraps a call to Log.i

Link copied to clipboard
abstract fun trace(TAG: String, msg: String)

Default implementation, meant to be overridden. Wraps a call to Log.v

Link copied to clipboard
abstract fun warn(TAG: String, msg: String)

Default implementation, meant to be overridden. Wraps a call to Log.w

Inheritors

Link copied to clipboard