Logger

abstract class Logger

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard

Functions

Link copied to clipboard
fun Logger.debug(tag: String, throwable: Throwable? = null, message: () -> String? = null)
Link copied to clipboard
fun Logger.error(tag: String, throwable: Throwable? = null, message: () -> String? = null)
Link copied to clipboard
fun Logger.info(tag: String, throwable: Throwable? = null, message: () -> String? = null)
Link copied to clipboard
abstract fun log(tag: String, level: Logger.Level, throwable: Throwable? = null, message: () -> String? = null)
Link copied to clipboard
fun Logger.verbose(tag: String, throwable: Throwable? = null, message: () -> String? = null)
Link copied to clipboard
fun Logger.warn(tag: String, throwable: Throwable? = null, message: () -> String? = null)