Class JavaLogFactory.JavaLoggerLevel

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    JavaLogFactory

    public static class JavaLogFactory.JavaLoggerLevel
    extends java.util.logging.Level
    A custom logging level defined between Level.SEVERE and Level.WARNING in logger.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.util.logging.Level ERROR_LEVEL
      Defines a custom error level below SEVERE but above WARNING since this level isn't defined directly by java.util.Logger already.
      protected static long serialVersionUID  
      • Fields inherited from class java.util.logging.Level

        ALL, CONFIG, FINE, FINER, FINEST, INFO, OFF, SEVERE, WARNING
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected JavaLoggerLevel​(java.lang.String name, int value)
      Constructs an instance of a JavaLoggerLevel which essentially provides a mapping between the name of the defined level and its numeric value.
    • Method Summary

      • Methods inherited from class java.util.logging.Level

        equals, getLocalizedName, getName, getResourceBundleName, hashCode, intValue, parse, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • ERROR_LEVEL

        public static final java.util.logging.Level ERROR_LEVEL
        Defines a custom error level below SEVERE but above WARNING since this level isn't defined directly by java.util.Logger already.
    • Constructor Detail

      • JavaLoggerLevel

        protected JavaLoggerLevel​(java.lang.String name,
                                  int value)
        Constructs an instance of a JavaLoggerLevel which essentially provides a mapping between the name of the defined level and its numeric value.
        Parameters:
        name - The name of the JavaLoggerLevel
        value - The associated numeric value