Log

object Log

Types

Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard

List of logging "backends" to use, defaults to a ConsoleLogger.

Functions

Link copied to clipboard
fun assert(message: String = "", throwable: Throwable? = null, tag: String = "")
fun assert(throwable: Throwable? = null, tag: String = "", message: () -> String)
Link copied to clipboard
fun debug(message: String = "", throwable: Throwable? = null, tag: String = "")
fun debug(throwable: Throwable? = null, tag: String = "", message: () -> String)
Link copied to clipboard
fun error(message: String = "", throwable: Throwable? = null, tag: String = "")
fun error(throwable: Throwable? = null, tag: String = "", message: () -> String)
Link copied to clipboard
fun info(message: String = "", throwable: Throwable? = null, tag: String = "")
fun info(throwable: Throwable? = null, tag: String = "", message: () -> String)
Link copied to clipboard
fun log(priority: Log.Level, tag: String = "", throwable: Throwable? = null, message: String? = null)
Link copied to clipboard
fun verbose(message: String = "", throwable: Throwable? = null, tag: String = "")
fun verbose(throwable: Throwable? = null, tag: String = "", message: () -> String)
Link copied to clipboard
fun warn(message: String = "", throwable: Throwable? = null, tag: String = "")
fun warn(throwable: Throwable? = null, tag: String = "", message: () -> String)