All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.kr.jadekim.logger.LogLevel.kt Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
package kr.jadekim.logger

enum class LogLevel {
    NONE,
    FETAL,
    ERROR,
    WARNING,
    INFO,
    DEBUG,
    TRACE;

    fun isPrintableAt(level: LogLevel) = ordinal <= level.ordinal
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy