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

com.github.invictum.reportportal.LogLevel Maven / Gradle / Ivy

package com.github.invictum.reportportal;

/**
 * Describes available message levels.
 * Similar to log facility.
 */
public enum LogLevel {

    ERROR, WARN, INFO, DEBUG, TRACE, FATAL, UNKNOWN;

    @Override
    public String toString() {
        return name().toLowerCase();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy