com.adventnet.utilities.logging
Class Level

java.lang.Object
  extended by 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()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DISABLED

public static final int DISABLED
This level disables logging

See Also:
Constant Field Values

FATAL

public static final int FATAL
This level is used for logging fatal exceptions and errors

See Also:
Constant Field Values

ERROR

public static final int ERROR
This level is used to log errors and non fatal exceptions.

See Also:
Constant Field Values

WARN

public static final int WARN
this level is used for logging warnings

See Also:
Constant Field Values

INFO

public static final int INFO
this level is used for looging general information

See Also:
Constant Field Values

DEBUG

public static final int DEBUG
this level is used for logging debug information

See Also:
Constant Field Values

TRACE

public static final int TRACE
this level is used for tracing

See Also:
Constant Field Values
Constructor Detail

Level

public Level()