Coverage Summary for Class: Level (cloud.mindbox.mobile_sdk.logger)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| Level |
100%
(1/1)
|
100%
(2/2)
|
|
100%
(7/7)
|
100%
(57/57)
|
package cloud.mindbox.mobile_sdk.logger
public enum class Level(public val value: Int) {
VERBOSE(0),
DEBUG(1),
INFO(2),
WARN(3),
ERROR(4),
NONE(5)
}
internal infix fun Level.isAtMost(other: Level): Boolean = value <= other.value
@Suppress("unused")
internal infix fun Level.isAtLeast(other: Level): Boolean = value >= other.value