LevelRange

data class LevelRange(val minLevel: Level, val maxLevel: Level) : ClosedRange<Level>

Inclusive range of logging levels with the names of sinks where events will be sent.

Constructors

Link copied to clipboard
constructor(minLevel: Level, maxLevel: Level)

Functions

Link copied to clipboard
open operator fun contains(value: Level): Boolean
Link copied to clipboard
open fun isEmpty(): Boolean
Link copied to clipboard
fun toSink(sinkName: String)

DSL function to specify a sink where events for this LoggingConfig should be sent.

Properties

Link copied to clipboard
open override val endInclusive: Level
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val start: Level