Package com.gurock.smartinspect
Class Level
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.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 Summary
Fields Modifier and Type Field Description static LevelControlThis log level represents a special log level which is only used by the ControlCommand class and is not intended to be used directly.static LevelDebugRepresents the Debug log level.static LevelErrorRepresents the Error log level.static LevelFatalRepresents the Fatal log level.static LevelMessageRepresents the Message log level.static LevelVerboseRepresents the Verbose log level.static LevelWarningRepresents the Warning log level.
-
-
-
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.
-
-