1 <?xml version="1.0" encoding="UTF-8"?> 2 <Configuration status="OFF"> 3 <Appenders> 4 <RollingRandomAccessFile name="RollingRandomAccessFile" fileName="perftest.log" 5 filePattern="app-%d{MM-dd-yyyy}-%i.log.gz" append="false" 6 immediateFlush="false"> 7 <PatternLayout> 8 <Pattern>%d %p %c{1.} [%t] %X{aKey} %m %ex%n</Pattern> 9 </PatternLayout> 10 <Policies> 11 <TimeBasedTriggeringPolicy /> 12 </Policies> 13 </RollingRandomAccessFile> 14 </Appenders> 15 <Loggers> 16 <Root level="info" includeLocation="false"> 17 <appender-ref ref="RollingRandomAccessFile"/> 18 </Root> 19 </Loggers> 20 </Configuration>