Package ch.qos.logback.classic.spi
Interface LoggerContextListener
-
- All Known Implementing Classes:
JMXConfigurator,LevelChangePropagator
@Deprecated(since="2022-01-27") public interface LoggerContextListenerDeprecated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanisResetResistant()Deprecated.Some listeners should not be removed when the LoggerContext is reset.voidonLevelChange(Logger logger, Level level)Deprecated.voidonReset(LoggerContext context)Deprecated.voidonStart(LoggerContext context)Deprecated.voidonStop(LoggerContext context)Deprecated.
-
-
-
Method Detail
-
isResetResistant
boolean isResetResistant()
Deprecated.Some listeners should not be removed when the LoggerContext is reset. Such listeners are said to be reset resistant.- Returns:
- whether this listener is reset resistant or not.
-
onStart
void onStart(LoggerContext context)
Deprecated.
-
onReset
void onReset(LoggerContext context)
Deprecated.
-
onStop
void onStop(LoggerContext context)
Deprecated.
-
-