Hi<br><br>We use logback 0.9.18 and SLF4J 1.5.10. After monthly log rotation we noticed that<br>new log entries were being appended both to the newly created file and also to the rotated file of the previous<br>month. Is this a known issue? Below is the config snippet.<br>
<br>Regards,<br>Silvano<br><br>Â Â Â <appender name="XML" class="ch.qos.logback.core.rolling.RollingFileAppender"><br>Â Â Â Â Â Â Â <File>${viperats.logdir}txplugin.xml.log</File><br>Â Â Â Â Â Â Â <layout class="ch.qos.logback.classic.PatternLayout"><br>
           <pattern>%d{yyyy-MM-dd HH:mm:ss}%n%msg------------------------------------------------%n</pattern><br>       </layout><br>       <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"><br>
           <FileNamePattern>${viperats.logdir}/txplugin.xml.log-%d{yyyy-MM}</FileNamePattern><br>       </rollingPolicy><br>       <Append>true</Append><br>   </appender><br><br>