Clients should normally use the predefined Level constants such as Level.SEVERE.
The levels in descending order are:
Creates the named logger. Will also create the parents of the named logger
if they don't yet exist.
Arguments:
Returns:
The named logger.
|
code » | ||
![]()
Creates the predefined levels cache and populates it.
|
code » | ||
Find or create a logger for a named subsystem. If a logger has already been
created with the given name it is returned. Otherwise a new logger is
created. If a new logger is created its log level will be configured based
on the LogManager configuration and it will configured to also send logging
output to its parent's handlers. It will be registered in the LogManager
global namespace.
Arguments:
Returns:
The named logger.
|
code » | ||
Method to find a named logger.
Arguments:
Returns:
The named logger.
|
code » | ||
Returns all the loggers
Returns:
Map of logger names to logger objects.
|
code » | ||
Gets the predefined level with the given name.
Arguments:
Returns:
The level, or null if none found.
|
code » | ||
Gets the highest predefined level <= #value.
Arguments:
Returns:
The level, or null if none found.
|
code » | ||
Returns the root of the logger tree namespace, the logger with the empty
string as its name
Returns:
The root logger.
|
code » | ||
![]()
No description.
|
code » |
ALL indicates that all messages should be logged.
This level is initialized to
Number.MIN_VALUE .
|
Code » | |
CONFIG is a message level for static configuration messages.
This level is initialized to
700 .
|
Code » | |
FINE is a message level providing tracing information.
This level is initialized to
500 .
|
Code » | |
FINER indicates a fairly detailed tracing message.
This level is initialized to
400 .
|
Code » | |
FINEST indicates a highly detailed tracing message.
This level is initialized to
300 .
|
Code » | |
INFO is a message level for informational messages.
This level is initialized to
800 .
|
Code » | |
OFF is a special level that can be used to turn off logging.
This level is initialized to
Number.MAX_VALUE .
|
Code » | |
The predefined levels.
|
Code » | |
SEVERE is a message level indicating a serious failure.
This level is initialized to
1000 .
|
Code » | |
SHOUT is a message level for extra debugging loudness.
This level is initialized to
1200 .
|
Code » | |
WARNING is a message level indicating a potential problem.
This level is initialized to
900 .
|
Code » | |
Map of logger names to logger objects
|
Code » | |
A lookup map used to find the level object based on the name or value of
the level object.
|
Code » | |
The root logger which is the root of the logger tree.
|
Code » |