Alachisoft.NCache.Common.Logger.JLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
/*
* 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);
}
}