jvmMain.LogImpl.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
import kotlin.reflect.KClass
class LogImpl internal constructor(private val caller: KClass<*>, private val manager: UltraLogManager) : Log {
override fun log(level: LogLevel, message: String) {
manager.log(level, message, caller.qualifiedName ?: "n/a")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy