com.adventnet.utilities.logging
Class Level
java.lang.Object
|
+--com.adventnet.utilities.logging.Level
- public class Level
- extends java.lang.Object
|
Field Summary |
static int |
DEBUG
this level is used for logging debug information |
static int |
DISABLED
This level disables logging |
static int |
ERROR
This level is used to log errors and non fatal exceptions. |
static int |
FATAL
This level is used for logging fatal exceptions and errors |
static int |
INFO
this level is used for looging general information |
static int |
TRACE
this level is used for tracing |
static int |
WARN
this level is used for logging warnings |
|
Constructor Summary |
Level()
|
| Methods inherited from class java.lang.Object |
,
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
DISABLED
public static final int DISABLED
- This level disables logging
FATAL
public static final int FATAL
- This level is used for logging fatal exceptions and errors
ERROR
public static final int ERROR
- This level is used to log errors and non fatal exceptions.
WARN
public static final int WARN
- this level is used for logging warnings
INFO
public static final int INFO
- this level is used for looging general information
DEBUG
public static final int DEBUG
- this level is used for logging debug information
TRACE
public static final int TRACE
- this level is used for tracing
Level
public Level()