Closed
Description
Logback's documentation recommends stopping the context on shutdown to flush the loggers and let appenders terminate properly.
https://logback.qos.ch/manual/appenders.html#AsyncAppender
https://logback.qos.ch/manual/configuration.html#stopContext
This doesn't appear to be happening during LogbackLoggingSystem.cleanUp()
. Is there perhaps a reason for Spring Boot not to call stop()
on LoggerContext
? Are the users expected to do this instead?