Enum LogLevel

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Debug
      Level of logging used for reporting extra details during a program's execution.
      Error
      Level of logging used for reporting errors, exceptions, and other mishaps.
      Info
      Level of logging used for reporting general/often-needed information and statuses.
      Trace
      Level of logging used for reporting the deepest needed details and information during a program's execution.
      Warn
      Level of logging used for reporting suspicious/unexpected results which can cause issues.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      org.slf4j.event.Level slf4jLevel
      The enum value's corresponding SLF4J level enum.
    • Enum Constant Detail

      • Error

        public static final LogLevel Error
        Level of logging used for reporting errors, exceptions, and other mishaps.
      • Warn

        public static final LogLevel Warn
        Level of logging used for reporting suspicious/unexpected results which can cause issues.
      • Info

        public static final LogLevel Info
        Level of logging used for reporting general/often-needed information and statuses.
      • Debug

        public static final LogLevel Debug
        Level of logging used for reporting extra details during a program's execution.
      • Trace

        public static final LogLevel Trace
        Level of logging used for reporting the deepest needed details and information during a program's execution.
    • Field Detail

      • slf4jLevel

        public final org.slf4j.event.Level slf4jLevel
        The enum value's corresponding SLF4J level enum.
    • Method Detail

      • values

        public static LogLevel[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LogLevel c : LogLevel.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LogLevel valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null