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

Alachisoft.NCache.Common.Logger.JLevel Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Alachisoft.NCache.Common.Logger;

import java.util.logging.Level;

/**
 * @author Muneeb Shahid
 */
public class JLevel extends Level {

    public static final Level Error = new JLevel("Error", Level.WARNING.intValue() + 1);
    public static final Level CriticalInfo = new JLevel("CriticalInfo", Level.SEVERE.intValue() + 1);
    public static final Level DevInfo = new JLevel("DevInfo", Level.SEVERE.intValue() + 1);

    public JLevel(String name, int value) {
        super(name, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy