| java.lang.Object java.util.logging.Level com.finalist.util.log.CustomLevel
CustomLevel | class CustomLevel extends Level (Code) | | A class for making custom levels for logging.
author: Ronald Kramp - Finalist IT Group version: $Revision: 1.1 $, $Date: 2004/11/12 14:06:44 $ |
Constructor Summary | |
public | CustomLevel(String name, int value) Constrcutor for making a custom level. |
Method Summary | |
public static Level | parse(String levelName) Parse a levelName to a Level object. |
DEBUG | final public static Level DEBUG(Code) | | a Level for DEBUG
|
ERROR | final public static Level ERROR(Code) | | a Level for ERROR
|
FATAL | final public static Level FATAL(Code) | | a Level for FATAL
|
CustomLevel | public CustomLevel(String name, int value)(Code) | | Constrcutor for making a custom level.
name, the name of the Level value, the value for the level |
parse | public static Level parse(String levelName)(Code) | | Parse a levelName to a Level object.
Parameters: levelName - the name of the Level to parse to a Level obhect Level the Level object parsed |
|
|