Gets the name of the log level associated with the specified logger.
If the specified logger does not exist,
null
is returned.
This method first finds the logger of the given name and
then returns the name of the log level by calling:
.
;
If the Level of the specified logger is null,
which means that this logger's effective level is inherited
from its parent, an empty string will be returned.
Returns the list of currently registered loggers. This method
calls
LogManager#getLoggerNames
and returns a list
of the logger names.
Returns the name of the parent for the specified logger.
If the specified logger does not exist, null is returned.
If the specified logger is the root Logger in the namespace,
the result will be an empty string.
Sets the specified logger to the specified new level.
If the levelName is not null, the level
of the specified logger is set to the parsed Level
matching the levelName.
If the levelName is null, the level
of the specified logger is set to null and
the effective level of the logger is inherited from
its nearest ancestor with a specific (non-null) level value.