KSLog/src/commonMain/kotlin/AutoLoggers.kt

9 lines
238 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")
val Any.logger
get() = CallbackKSLog { l, t, m, e ->
2022-06-07 15:52:42 +00:00
KSLog.default.performLog(l, t ?: logTag, m, e)
2022-06-07 15:42:19 +00:00
}