commonMain.kr.jadekim.logger.LogLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j-logger-jvm Show documentation
Show all versions of j-logger-jvm Show documentation
Logging Library for Kotlin
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