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

commonMain.TagLogger.kt Maven / Gradle / Ivy

package dev.inmo.kslog.common

import kotlin.jvm.JvmInline

@JvmInline
value class TagLogger(val tag: String) : KSLog {
    override fun performLog(level: LogLevel, tag: String?, message: Any, throwable: Throwable?) {
        KSLog.performLog(level, tag ?: this.tag, message, throwable)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy