Class Level


  • public class Level
    extends Enum
    Represents the log level in the SmartInspect Java library. Please see the SmartInspect.setLevel and SmartInspect.setDefaultLevel methods for detailed examples and more information on how to use the Level enum.
    • Field Detail

      • Debug

        public static final Level Debug
        Represents the Debug log level. This log level is mostly intended to be used in the debug and development process.
      • Verbose

        public static final Level Verbose
        Represents the Verbose log level. This log level is intended to track the general progress of applications at a fine-grained level.
      • Message

        public static final Level Message
        Represents the Message log level. This log level is intended to track the general progress of applications at a coarse-grained level.
      • Warning

        public static final Level Warning
        Represents the Warning log level. This log level designates potentially harmful events or situations.
      • Error

        public static final Level Error
        Represents the Error log level. This log level designates error events or situations which are not critical to the entire system. This log level thus describes recoverable or less important errors.
      • Fatal

        public static final Level Fatal
        Represents the Fatal log level. This log level designates errors which are not recoverable and eventually stop the system or application from working.
      • Control

        public static final Level Control
        This log level represents a special log level which is only used by the ControlCommand class and is not intended to be used directly.