public enum VerboseLevel extends java.lang.Enum<VerboseLevel>
Logger.log(String, VerboseLevel)
method in particular) of in the configuration file.
Note that the order of the enum constant is important since for a given level
of verbosity, all messages with a superior level of verbosity will be displayed
as well.Enum Constant and Description |
---|
DEBUG
Not very important debug info.
|
DEBUG_CONCURRENCY
Very verbose debug information, used to track concurrency errors.
|
EMPHASIZE
Emphasized standard information
|
ERROR
"Normal" error, that will be reported to the clients
|
FATAL_ERROR
Error that trigger the direct interuption of the application
|
IMPORTANT
Important information that should be emphasized in a log
|
INFO
Standard information
|
SERIOUS_ERROR
Error that "shouldn't happen" but the server can live with.
|
SILENT
Only for use in the config file.
|
VERBOSE
Important debug info
|
WARNING
Not an error, but an important information that can alter the way the server works.
|
Modifier and Type | Method and Description |
---|---|
static VerboseLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerboseLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerboseLevel SILENT
public static final VerboseLevel FATAL_ERROR
public static final VerboseLevel SERIOUS_ERROR
public static final VerboseLevel ERROR
public static final VerboseLevel WARNING
public static final VerboseLevel IMPORTANT
public static final VerboseLevel EMPHASIZE
public static final VerboseLevel INFO
public static final VerboseLevel VERBOSE
public static final VerboseLevel DEBUG
public static final VerboseLevel DEBUG_CONCURRENCY
public static VerboseLevel[] values()
for (VerboseLevel c : VerboseLevel.values()) System.out.println(c);
public static VerboseLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullORO is a part of the OpenRobots framework.
openrobots@laas.fr
LAAS-CNRS 2009-2011