addDefaultKSLog

This commit is contained in:
InsanusMokrassar 2022-07-31 19:15:53 +06:00
parent 34ea0bd91a
commit 194e52f521
2 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
## 0.4.2
* Add `setDefaultKSLog`
* Add `setDefaultKSLog` and `addDefaultKSLog`
* Add `plus` operation for two `KSLog` instances to call them both on each log performing
* Add `KSLog` factory for simple creation of `CallbackKSLog`

View File

@ -1,6 +1,7 @@
package dev.inmo.kslog.common
import dev.inmo.kslog.common.filter.filtered
import dev.inmo.kslog.common.utils.plus
enum class LogLevel {
@ -112,3 +113,4 @@ fun KSLog(
}
fun setDefaultKSLog(newDefault: KSLog) { KSLog.default = newDefault }
fun addDefaultKSLog(newDefault: KSLog) { KSLog.default = KSLog.default + newDefault }