addDefaultKSLog

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

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 }