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

commonMain.LogLevel.kt Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
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