custom

fun custom(vararg levels: LogLevel.Level): LogLevel

Create custom combination of log levels.

Example:

val customLogs = LogLevel.custom(
Level.ERROR,
Level.WARN,
Level.EVENT
)