Package org.jboss.logmanager
Interface EmbeddedConfigurator
-
public interface EmbeddedConfiguratorThe configurator for the embedded log manager.
-
-
Field Summary
Fields Modifier and Type Field Description static EmbeddedConfiguratorEMPTYstatic Handler[]NO_HANDLERS
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default 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 Detail
-
NO_HANDLERS
static final Handler[] NO_HANDLERS
-
EMPTY
static final EmbeddedConfigurator EMPTY
-
-
Method Detail
-
getMinimumLevelOf
default Level getMinimumLevelOf(String loggerName)
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
default Level getLevelOf(String loggerName)
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
-
-