qa.justtestlah.log.LogLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of justtestlah-core Show documentation
Show all versions of justtestlah-core Show documentation
JustTestLah! is a JAVA test framework targeting projects that support multiple platforms, in particular Web, Android and iOS. It follows a BDD approach and allows testing against all platforms using the same feature files. JustTestLah's main aim is to make the configuration and the actual test code as easy as possible.
package qa.justtestlah.log;
/** Log levels */
public class LogLevel {
/** OFF = no logging */
public static final int OFF = -1;
/** TRACE level of logging. */
public static final int TRACE = 0;
/** DEBUG level of logging. */
public static final int DEBUG = 1;
/** INFO level of logging. */
public static final int INFO = 2;
/** WARN level of logging. */
public static final int WARN = 3;
/** ERROR level of logging. */
public static final int ERROR = 4;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy