commonMain.de.halfbit.logger.LogLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logger-jvm Show documentation
Show all versions of logger-jvm Show documentation
Minimalistic, fast and configurable Logger for Kotlin Multiplatform
The newest version!
/** Copyright 2024 Halfbit GmbH, Sergej Shafarenka */
package de.halfbit.logger
public enum class LogLevel(
public val weight: Int,
public val long: String,
public val short: Char,
) {
Debug(10, "DEBUG", 'D'),
Info(20, "INFO", 'I'),
Warning(30, "WARN", 'W'),
Error(40, "ERROR", 'E'),
}