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

9 lines
193 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
fun KSLog.filtered(
filter: MessageFilter
) = FilterKSLog(this, filter)