public class LogbackLoggingSystem extends Slf4JLoggingSystem
LoggingSystem
for logback.Modifier and Type | Class and Description |
---|---|
static class |
LogbackLoggingSystem.Factory
LoggingSystemFactory that returns LogbackLoggingSystem if possible. |
AbstractLoggingSystem.LogLevels<T>
CONFIGURATION_COMPARATOR
NONE, ROOT_LOGGER_NAME, SYSTEM_PROPERTY
Constructor and Description |
---|
LogbackLoggingSystem(ClassLoader classLoader) |
Modifier and Type | Method and Description |
---|---|
void |
beforeInitialize()
Reset the logging system to be limit output.
|
void |
cleanUp()
Clean up the logging system.
|
LoggerConfiguration |
getLoggerConfiguration(String loggerName)
Returns the current configuration for a
LoggingSystem 's logger. |
List<LoggerConfiguration> |
getLoggerConfigurations()
Returns a collection of the current configuration for all a
LoggingSystem 's
loggers. |
Runnable |
getShutdownHandler()
Returns a
Runnable that can handle shutdown of this logging system when the
JVM exits. |
protected String[] |
getStandardConfigLocations()
Return the standard config locations for this system.
|
Set<LogLevel> |
getSupportedLogLevels()
Returns a set of the
LogLevels that are actually supported by the
logging system. |
LoggingSystemProperties |
getSystemProperties(ConfigurableEnvironment environment)
Return the
LoggingSystemProperties that should be applied. |
void |
initialize(LoggingInitializationContext initializationContext,
String configLocation,
LogFile logFile)
Fully initialize the logging system.
|
protected void |
loadConfiguration(LoggingInitializationContext initializationContext,
String location,
LogFile logFile)
Load a specific configuration.
|
protected void |
loadDefaults(LoggingInitializationContext initializationContext,
LogFile logFile)
Load sensible defaults for the logging system.
|
protected void |
reinitialize(LoggingInitializationContext initializationContext)
Reinitialize the logging system if required.
|
void |
setLogLevel(String loggerName,
LogLevel level)
Sets the logging level for a given logger.
|
isBridgeHandlerAvailable, isBridgeJulIntoSlf4j
applySystemProperties, getClassLoader, getPackagedConfigFile, getSelfInitializationConfig, getSpringConfigLocations, getSpringInitializationConfig
get
public LogbackLoggingSystem(ClassLoader classLoader)
public LoggingSystemProperties getSystemProperties(ConfigurableEnvironment environment)
LoggingSystem
LoggingSystemProperties
that should be applied.getSystemProperties
in class LoggingSystem
environment
- the ConfigurableEnvironment
used to obtain valueLoggingSystemProperties
to applyprotected String[] getStandardConfigLocations()
AbstractLoggingSystem
getStandardConfigLocations
in class AbstractLoggingSystem
AbstractLoggingSystem.getSelfInitializationConfig()
public void beforeInitialize()
LoggingSystem
LoggingSystem.initialize(LoggingInitializationContext, String, LogFile)
to reduce
logging noise until the system has been fully initialized.beforeInitialize
in class Slf4JLoggingSystem
public void initialize(LoggingInitializationContext initializationContext, String configLocation, LogFile logFile)
LoggingSystem
initialize
in class AbstractLoggingSystem
initializationContext
- the logging initialization contextconfigLocation
- a log configuration location or null
if default
initialization is requiredlogFile
- the log output file that should be written or null
for
console only outputprotected void loadDefaults(LoggingInitializationContext initializationContext, LogFile logFile)
AbstractLoggingSystem
loadDefaults
in class AbstractLoggingSystem
initializationContext
- the logging initialization contextlogFile
- the file to load or null
if no log file is to be writtenprotected void loadConfiguration(LoggingInitializationContext initializationContext, String location, LogFile logFile)
AbstractLoggingSystem
loadConfiguration
in class Slf4JLoggingSystem
initializationContext
- the logging initialization contextlocation
- the location of the configuration to load (never null
)logFile
- the file to load or null
if no log file is to be writtenpublic void cleanUp()
LoggingSystem
cleanUp
in class Slf4JLoggingSystem
protected void reinitialize(LoggingInitializationContext initializationContext)
AbstractLoggingSystem
AbstractLoggingSystem.getSelfInitializationConfig()
is used and the log file hasn't changed. May
be used to reload configuration (for example to pick up additional System
properties).reinitialize
in class AbstractLoggingSystem
initializationContext
- the logging initialization contextpublic List<LoggerConfiguration> getLoggerConfigurations()
LoggingSystem
LoggingSystem
's
loggers.getLoggerConfigurations
in class LoggingSystem
public LoggerConfiguration getLoggerConfiguration(String loggerName)
LoggingSystem
LoggingSystem
's logger.getLoggerConfiguration
in class LoggingSystem
loggerName
- the name of the loggerpublic Set<LogLevel> getSupportedLogLevels()
LoggingSystem
LogLevels
that are actually supported by the
logging system.getSupportedLogLevels
in class LoggingSystem
public void setLogLevel(String loggerName, LogLevel level)
LoggingSystem
setLogLevel
in class LoggingSystem
loggerName
- the name of the logger to set (null
can be used for the
root logger).level
- the log level (null
can be used to remove any custom level for
the logger and use the default configuration instead)public Runnable getShutdownHandler()
LoggingSystem
Runnable
that can handle shutdown of this logging system when the
JVM exits. The default implementation returns null
, indicating that no
shutdown is required.getShutdownHandler
in class LoggingSystem
null