public enum LogLevel:
Severity assigned to a log event.
Levels are ordered from the most verbose (TRACE) to the disabled state (OFF). A handler accepts an event when its level is greater than or equal to the configured minimum.
import klyn.logging assert LogLevel.DEBUG.acceptedBy(LogLevel.INFO) == false assert LogLevel.ERROR.acceptedBy(LogLevel.INFO)