Log

interface Log

Inheritors

Types

Link copied to clipboard

Log levels enum

Properties

Link copied to clipboard
abstract var logLevel: Log.Level

The minimum log level to output

Functions

Link copied to clipboard
abstract fun debug(message: String, ex: Throwable? = null)

Debugging output

Link copied to clipboard
abstract fun error(message: String, ex: Throwable? = null)

Encountered an error or exception

Link copied to clipboard
abstract fun info(message: String, ex: Throwable? = null)

Informational output

Link copied to clipboard
abstract fun verbose(message: String, ex: Throwable? = null)

Verbose output

Link copied to clipboard
abstract fun warning(message: String, ex: Throwable? = null)

Encountered a potential problem

Link copied to clipboard
abstract fun wtf(message: String, ex: Throwable? = null)

Encountered a completely unexpected scenario