KSLog/src/commonMain/kotlin/filter/FilteredExtension.kt

12 lines
258 B
Kotlin
Raw Normal View History

2022-07-30 09:12:46 +00:00
package dev.inmo.kslog.common.filter
import dev.inmo.kslog.common.KSLog
import dev.inmo.kslog.common.MessageFilter
2023-11-18 11:15:23 +00:00
/**
* Creates [FilterKSLog] with applying of [filter] to it
*/
2022-07-30 09:12:46 +00:00
fun KSLog.filtered(
filter: MessageFilter
) = FilterKSLog(this, filter)