What behavior are you seeing? Is it never rolling or something else? The max attribute only applies if you have a %i in the file pattern. It would limit to 2 files per day if you had one in the patten, but not 2 files across days.
Ralph > On Oct 14, 2013, at 6:07 PM, Arkin Yetis <[email protected]> wrote: > > Hi, > I can't seem to get the DefaultRolloverStrategy to work with the following > configuration. Is there anything I am doing wrong? > Thanks, > Arkin > > <?xml version="1.0" encoding="UTF-8"?> > <configuration status="info" name="ABC" > > <appenders> > <RollingFile name="localFile" fileName="test.log" > filePattern="test-%d{MM-dd-yyyy}.log.gz"> > <PatternLayout pattern="%d{HH:mm:ss.SSS} %-5level %class{36}:%L > %M - %msg%n" /> > <TimeBasedTriggeringPolicy /> > <DefaultRolloverStrategy max="2" /> > </RollingFile> > </appenders> > > <loggers> > <root level="info"> > <appender-ref ref="localFile" /> > </root> > </loggers> > </configuration> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
