sandbox-java/rolling-log/src/main/resources/log4j2.xml

14 lines
380 B
XML
Raw Normal View History

2022-01-06 19:21:32 +01:00
<RollingFile
name="rollingFile"
fileName="${LOG_DIR}/log.txt"
filePattern="${LOG_DIR}/log.%i.txt.gz"
ignoreExceptions="false">
<PatternLayout>
<Pattern>%d{yyyy-MM-dd HH:mm:ss} %-5p %m%n</Pattern>
</PatternLayout>
<Policies>
<SizeBasedTriggeringPolicy size="5KB" />
</Policies>
<DefaultRolloverStrategy max="5" />
</RollingFile>