LogLevel

sealed class LogLevel(val priority: Int) : Comparable<LogLevel> (source)

Log level.

Since

0.5.3

Inheritors

Constructors

Link copied to clipboard
protected constructor(priority: Int)

Types

Link copied to clipboard
object ASSERT : LogLevel
Link copied to clipboard
object DEBUG : LogLevel
Link copied to clipboard
object ERROR : LogLevel
Link copied to clipboard
object INFO : LogLevel
Link copied to clipboard
object VERBOSE : LogLevel
Link copied to clipboard
object WARN : LogLevel

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun compareTo(other: LogLevel): Int
Link copied to clipboard
open override fun toString(): String