KSLog/src/commonMain/kotlin/AutoLoggers.kt

9 lines
228 B
Kotlin
Raw Normal View History

2022-06-07 15:42:19 +00:00
package dev.inmo.kslog.common
val Any.logTag
get() = this::class.simpleName ?: error("Unable to retrieve log tag")
2022-06-08 06:59:41 +00:00
val Any.logger: KSLog
get() = TagLogger(logTag)
2022-07-30 08:15:55 +00:00
fun taggedLogger(tagBase: Any): KSLog = tagBase.logger