
ca.ubc.cs.beta.aeatk.logging.LogLevel Maven / Gradle / Ivy
package ca.ubc.cs.beta.aeatk.logging;
/**
* Utility Enum that controls the log level
* @author sjr
*
*NOTE: The order of these MUST be from more to less verbose
*as some validation of the configuration options depend on the use of ordinal()
*/
public enum LogLevel {
TRACE,
DEBUG,
INFO,
WARN,
ERROR,
OFF;
public boolean lessVerbose(LogLevel logLevel)
{
return ordinal() > logLevel.ordinal();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy