mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2024-12-22 14:07:15 +00:00
now tag in MessageFormatter is a nullable
This commit is contained in:
parent
77ca9ce25b
commit
66c5451293
@ -1,8 +1,8 @@
|
|||||||
package dev.inmo.kslog.common
|
package dev.inmo.kslog.common
|
||||||
|
|
||||||
typealias MessageFormatter = (l: LogLevel, t: String, m: Any, Throwable?) -> String
|
typealias MessageFormatter = (l: LogLevel, t: String?, m: Any, Throwable?) -> String
|
||||||
@Suppress("NOTHING_TO_INLINE")
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun MessageFormatter(noinline formatter: MessageFormatter) = formatter
|
inline fun MessageFormatter(noinline formatter: MessageFormatter) = formatter
|
||||||
typealias MessageFilter = (l: LogLevel, t: String?, Throwable?) -> Boolean
|
typealias MessageFilter = (l: LogLevel, t: String?, Throwable?) -> Boolean
|
||||||
val defaultMessageFormatter: MessageFormatter = { l, t, m, _ -> "[$l] $t - $m" }
|
val defaultMessageFormatter: MessageFormatter = { l, t, m, _ -> "[$l] ${t ?.let { "$it " } ?: ""}- $m" }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user