commonMain.LogLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logging-jvm Show documentation
Show all versions of logging-jvm Show documentation
"Logging Tools For Kotlin"
package de.peekandpoke.ultra.logging
enum class LogLevel(val severity: Int) {
OFF(Int.MAX_VALUE),
ERROR(500),
WARNING(400),
INFO(300),
DEBUG(200),
TRACE(100),
ALL(0),
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy