com.lazerycode.jmeter.configuration.LogLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfana-jmeter-maven-plugin Show documentation
Show all versions of perfana-jmeter-maven-plugin Show documentation
Forked from jmeter-maven-plugin, with Perfana integration.
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();
}
}