Package ch.qos.logback.classic.spi
Interface Configurator
-
- All Superinterfaces:
ContextAware
- All Known Implementing Classes:
BasicConfigurator
@Deprecated(since="2022-01-27") public interface Configurator extends ContextAware
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.Allows programmatic initialization and configuration of Logback. The ServiceLoader is typically used to instantiate implementations and thus implementations will need to follow the guidelines of the ServiceLoader specifically a no-arg constructor is required.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
configure(LoggerContext loggerContext)
Deprecated.The context will also be set before this method is called viaContextAware.setContext(ch.qos.logback.core.Context)
.-
Methods inherited from interface ch.qos.logback.core.spi.ContextAware
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, setContext
-
-
-
-
Method Detail
-
configure
void configure(LoggerContext loggerContext)
Deprecated.The context will also be set before this method is called viaContextAware.setContext(ch.qos.logback.core.Context)
.
-
-