| org.ozoneDB.util.OzoneDebugLevel
OzoneDebugLevel | public class OzoneDebugLevel extends Level (Code) | | public final static int DEBUG2_INT = 9000;
public final static int DEBUG3_INT = 8000;
The DEBUG priority designates fine-grained
informational events that are most useful to debug an
application.
final static public Priority DEBUG2_INT = new Level(DEBUG2_INT, "DEBUG2_INT", 7);
|
Method Summary | |
public static Level | toLevel(String sArg) Convert the string passed as argument to a level. | public static Level | toLevel(String sArg, Level defaultValue) | public static Level | toLevel(int i) |
DEBUG1_INT | final public static int DEBUG1_INT(Code) | | |
DEBUG1_STR | final public static String DEBUG1_STR(Code) | | One step finer (more verbose) than debug
|
DEBUG2_INT | final public static int DEBUG2_INT(Code) | | |
DEBUG2_STR | final public static String DEBUG2_STR(Code) | | One step finer (more verbose) than debug1
|
DEBUG3_INT | final public static int DEBUG3_INT(Code) | | |
DEBUG3_STR | final public static String DEBUG3_STR(Code) | | One step finer (more verbose) than debug2
|
DEBUG_STR | final public static String DEBUG_STR(Code) | | One step finer (more verbose) than info
|
ERROR_STR | final public static String ERROR_STR(Code) | | One step finer (more verbose) than fatal
|
FATAL_STR | final public static String FATAL_STR(Code) | | The least verbose level
|
INFO_STR | final public static String INFO_STR(Code) | | One step finer (more verbose) than warn
|
WARN_STR | final public static String WARN_STR(Code) | | One step finer (more verbose) than error
|
OzoneDebugLevel | protected OzoneDebugLevel(int level, String strLevel, int syslogEquiv)(Code) | | |
toLevel | public static Level toLevel(String sArg)(Code) | | Convert the string passed as argument to a level. If the
conversion fails, then this method returns
OzoneDebugLevel.DEBUG1 .
|
toLevel | public static Level toLevel(String sArg, Level defaultValue)(Code) | | |
|
|