gg.neko.spiceit.enumeration.LogLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spiceit-api Show documentation
Show all versions of spiceit-api Show documentation
SpiceIt Application Programming Interface exposes SpiceIt features to the world.
The newest version!
package gg.neko.spiceit.enumeration;
public enum LogLevel {
TRACE("trace"),
DEBUG("debug"),
INFO("info"),
WARN("warn"),
ERROR("error");
private final String methodName;
LogLevel(String methodName) {
this.methodName = methodName;
}
public String getMethodName() {
return this.methodName;
}
}