Package org.jboss.logmanager
Interface EmbeddedConfigurator
public interface EmbeddedConfigurator
The configurator for the embedded log manager.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault Handler[]getHandlersOf(String loggerName) Get the handlers of the given logger name.default LevelgetLevelOf(String loggerName) Get the configured level of the given logger name.default LevelgetMinimumLevelOf(String loggerName) Get the configured minimum level of the given logger name.
-
Field Details
-
NO_HANDLERS
-
EMPTY
-
-
Method Details
-
getMinimumLevelOf
Get the configured minimum level of the given logger name.- Parameters:
loggerName- the logger name (notnull)- Returns:
- the minimum level of the given logger name, or
nullto inherit
-
getLevelOf
Get the configured level of the given logger name.- Parameters:
loggerName- the logger name (notnull)- Returns:
- the level of the given logger name, or
nullto inherit
-
getHandlersOf
Get the handlers of the given logger name.- Parameters:
loggerName- the logger name (notnull)- Returns:
- the handlers of the given logger name (must not be
null)
-