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
|
## 1.1.0
|
||||||
|
|
||||||
* `Kotlin`: `1.8.20`
|
* `Kotlin`: `1.8.20`
|
||||||
|
* Standard factory `KSLog` with `String` arg now use `TagLogger`
|
||||||
|
|
||||||
## 1.0.0
|
## 1.0.0
|
||||||
|
|
||||||
|
@@ -68,7 +68,11 @@ internal val printlnLogging: (level: LogLevel, tag: String, message: Any, throwa
|
|||||||
|
|
||||||
fun KSLog(
|
fun KSLog(
|
||||||
defaultTag: String,
|
defaultTag: String,
|
||||||
messageFormatter: MessageFormatter = defaultMessageFormatter
|
): KSLog = TagLogger(defaultTag)
|
||||||
|
|
||||||
|
fun KSLog(
|
||||||
|
defaultTag: String,
|
||||||
|
messageFormatter: MessageFormatter
|
||||||
): KSLog = DefaultKSLog(
|
): KSLog = DefaultKSLog(
|
||||||
defaultTag,
|
defaultTag,
|
||||||
messageFormatter
|
messageFormatter
|
||||||
@@ -79,11 +83,10 @@ fun KSLog(
|
|||||||
defaultTag: String,
|
defaultTag: String,
|
||||||
filter: MessageFilter,
|
filter: MessageFilter,
|
||||||
messageFormatter: MessageFormatter = defaultMessageFormatter
|
messageFormatter: MessageFormatter = defaultMessageFormatter
|
||||||
): KSLog = DefaultKSLog(
|
): KSLog = KSLog (
|
||||||
defaultTag,
|
defaultTag,
|
||||||
filter,
|
|
||||||
messageFormatter
|
messageFormatter
|
||||||
)
|
).filtered(filter)
|
||||||
|
|
||||||
fun KSLog(
|
fun KSLog(
|
||||||
defaultTag: String,
|
defaultTag: String,
|
||||||
|
Reference in New Issue
Block a user