Alachisoft.NCache.Common.Logger.JLevel Maven / Gradle / Ivy
/*
* 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 - 2025 Weber Informatics LLC | Privacy Policy