KSLog/src/commonMain/kotlin/TagLogger.kt

11 lines
295 B
Kotlin
Raw 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: Any, throwable: Throwable?) {
2022-06-08 15:57:07 +00:00
KSLog.performLog(level, tag ?: this.tag, message, throwable)
2022-06-08 06:59:41 +00:00
}
}