KSLog/src/commonMain/kotlin/KSLogTypealiases.kt
2022-06-09 16:29:56 +06:00

7 lines
275 B
Kotlin

package dev.inmo.kslog.common
typealias MessageFormatter = (l: LogLevel, t: String, m: String, Throwable?) -> String
typealias MessageFilter = (l: LogLevel, t: String?, Throwable?) -> Boolean
val defaultMessageFormatter: MessageFormatter = { l, t, m, _ -> "[$l] $t - $m" }