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

com.lazerycode.jmeter.configuration.LogLevel Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package com.lazerycode.jmeter.configuration;

/**
 * Enum containing the log levels supported by JMeter
 */
public enum LogLevel {
	ERROR,
	WARN,
	INFO,
	DEBUG;

	@Override
	public String toString() {
		return super.toString().toUpperCase();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy