KSLog factory fix

This commit is contained in:
InsanusMokrassar 2023-04-13 10:33:13 +06:00
parent 7c0650e2df
commit dc50977c9a
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## 1.1.1
* Rollback `KSLog` with `String` arg factory to use `DefaultKSLog`
## 1.1.0
* `Kotlin`: `1.8.20`

View File

@ -68,7 +68,7 @@ internal val printlnLogging: (level: LogLevel, tag: String, message: Any, throwa
fun KSLog(
defaultTag: String,
): KSLog = TagLogger(defaultTag)
): KSLog = DefaultKSLog(defaultTag)
fun KSLog(
defaultTag: String,