Same problem with plain text logger

{code:xml}
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>C:/webapp/app.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>C:/webapp/log/app.%d{yyyy-MM-dd}.log.zip</fileNamePattern>
<maxHistory>7</maxHistory>
</rollingPolicy>
<encoder>
<pattern>%d{HH:mm:ss.SSS} %-5level [%thread] %logger{35}:%M - %msg%n</pattern>
</encoder>
</appender>
{code}

Archiving triggered 3 times and since then it continues to log into the same log file for 5 days, do I have to schedule a daily webApp reload to trigger a daily rollover?
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira