org.hisrc.jsonix.settings.LogLevelSetting Maven / Gradle / Ivy
package org.hisrc.jsonix.settings;
import org.slf4j.spi.LocationAwareLogger;
public enum LogLevelSetting {
TRACE(LocationAwareLogger.TRACE_INT), DEBUG(LocationAwareLogger.DEBUG_INT), INFO(
LocationAwareLogger.INFO_INT), WARN(LocationAwareLogger.WARN_INT), ERROR(
LocationAwareLogger.ERROR_INT);
private final int levelInt;
private LogLevelSetting(int levelInt) {
this.levelInt = levelInt;
}
public int asInt() {
return this.levelInt;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy