Interface ILoggerFactory
public interface ILoggerFactory
The internal logger factory.
- Author:
- Holger Eichelberger, SSE
-
Method Summary
Modifier and TypeMethodDescriptioncreateLogger(String name) Creates a logger for a given name.voidinitialLevels(Map<String, LogLevel> levels) Sets the initial levels to be considered when creating loggers if supported.
-
Method Details
-
createLogger
Creates a logger for a given name.- Parameters:
name- the name- Returns:
- the logger
-
initialLevels
Sets the initial levels to be considered when creating loggers if supported. Initial levels may occur when log levels are dynamically configured on the fallback implementation before the actual logger implementation is ready.- Parameters:
levels- the levels to consider
-