@fgrillini @autumnwind10 Please upgrade to logback version 1.1.5 if you have not already done so. Moreover, please post the status output generated during rollover. To enable status messages either add the following code on application start up
LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
StatusManager statusManager = lc.getStatusManager();
OnConsoleStatusListener _onConsoleListener_ = new OnConsoleStatusListener();
statusManager.add(onConsoleListener);
or the following to your configuration file.
<configuration>
<statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" />
... the rest of the configuration file
</configuration>
both approaches are mentioned in relevant section of the manual.
|