mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-09-16 13:39:26 +00:00
small improvements in KSLog
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
## 1.1.0
|
||||
|
||||
* `Kotlin`: `1.8.20`
|
||||
* Standard factory `KSLog` with `String` arg now use `TagLogger`
|
||||
|
||||
## 1.0.0
|
||||
|
||||
|
@@ -68,7 +68,11 @@ internal val printlnLogging: (level: LogLevel, tag: String, message: Any, throwa
|
||||
|
||||
fun KSLog(
|
||||
defaultTag: String,
|
||||
messageFormatter: MessageFormatter = defaultMessageFormatter
|
||||
): KSLog = TagLogger(defaultTag)
|
||||
|
||||
fun KSLog(
|
||||
defaultTag: String,
|
||||
messageFormatter: MessageFormatter
|
||||
): KSLog = DefaultKSLog(
|
||||
defaultTag,
|
||||
messageFormatter
|
||||
@@ -79,11 +83,10 @@ fun KSLog(
|
||||
defaultTag: String,
|
||||
filter: MessageFilter,
|
||||
messageFormatter: MessageFormatter = defaultMessageFormatter
|
||||
): KSLog = DefaultKSLog(
|
||||
): KSLog = KSLog (
|
||||
defaultTag,
|
||||
filter,
|
||||
messageFormatter
|
||||
)
|
||||
).filtered(filter)
|
||||
|
||||
fun KSLog(
|
||||
defaultTag: String,
|
||||
|
Reference in New Issue
Block a user