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

org.clapper.util.logging.LogLevel Maven / Gradle / Ivy

The newest version!
package org.clapper.util.logging;

/**
 * Encodes legal logging level constants for the {@link Logger} class.
 */
public enum LogLevel
{
    /*----------------------------------------------------------------------*\
                        Enumeration Constant Values
    \*----------------------------------------------------------------------*/

    /**
     * Log message at "debug" level
     */
    DEBUG,

    /**
     * Log message at "error" level
     */
    ERROR,

    /**
     * Log message at "fatal error" level
     */
    FATAL,

    /**
     * Log message at "informational message" level
     */
    INFO,

    /**
     * Log message at "trace" level
     */
    TRACE,

    /**
     * Log message at "warning" level
     */
    WARNING;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy