All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ziqni.transformers.LogLevel Maven / Gradle / Ivy

package com.ziqni.transformers;

public enum LogLevel {
    TRACE(1),
    DEBUG(2),
    INFO(3),
    WARN(4),
    ERROR(5);
    // must be in sync with JVM levels.

    final int level;

    LogLevel(int level) {
        this.level = level;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy