KSLog/src/commonMain/kotlin/TagLogger.kt

11 lines
293 B
Kotlin
Raw Permalink Normal View History

2022-06-08 06:59:41 +00:00
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: String, throwable: Throwable?) {
KSLog.performLog(level, tag ?: tag, message, throwable)
}
}