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

org.wildfly.extras.creaper.commands.logging.LogLevel Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package org.wildfly.extras.creaper.commands.logging;

public enum LogLevel {
    ALL("ALL"),
    FINEST("FINEST"),
    FINER("FINER"), TRACE("TRACE"),
    FINE("FINE"), DEBUG("DEBUG"),
    CONFIG("CONFIG"),
    INFO("INFO"),
    WARNING("WARNING"), WARN("WARN"),
    SEVERE("SEVERE"), ERROR("ERROR"),
    FATAL("FATAL"),
    OFF("OFF");

    private final String value;

    LogLevel(String value) {
        this.value = value;
    }

    public String value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy