diff options
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml')
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml b/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml index 7f12f2f6c..6d18560b2 100644 --- a/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml +++ b/archiva-modules/archiva-web/archiva-webapp/src/main/resources/log4j2.xml @@ -36,6 +36,13 @@ <Policies> <TimeBasedTriggeringPolicy /> </Policies> + <DefaultRolloverStrategy max="30"> + <Delete basePath="${logsDirectory}" maxDepth="2"> + <IfFileName glob="*/*.log"> + <IfLastModified age="P30D"/> + </IfFileName> + </Delete> + </DefaultRolloverStrategy> </RollingRandomAccessFile> <RollingRandomAccessFile name="auditlog" fileName="${logsDirectory}/archiva-audit.log" @@ -47,6 +54,13 @@ <Policies> <TimeBasedTriggeringPolicy /> </Policies> + <DefaultRolloverStrategy max="30"> + <Delete basePath="${logsDirectory}" maxDepth="2"> + <IfFileName glob="*/*.log"> + <IfLastModified age="P30D"/> + </IfFileName> + </Delete> + </DefaultRolloverStrategy> </RollingRandomAccessFile> <RollingRandomAccessFile name="redbackAuditLog" fileName="${logsDirectory}/archiva-security-audit.log" |