Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <Configuration status="INFO" monitorInterval="30">
- <Properties>
- <Property name="LOG_PATTERN">
- [ %d{yyyy-MMM-dd HH:mm:ss a} ] - [%t] %-5level %logger{36} - %msg%n
- </Property>
- </Properties>
- <Appenders>
- <Console name="ConsoleAppender" target="SYSTEM_OUT" follow="true">
- <PatternLayout pattern="${LOG_PATTERN}"/>
- </Console>
- <RollingFile name="FileAppender" fileName="/home/ec2-user/apps/wc-notification-service-2/wc-notification.out"
- filePattern="/home/ec2-user/apps/wc-notification-service-2/wc-notification.out-%d{yyyy-MM-dd}-%i">
- <PatternLayout>
- <Pattern>${LOG_PATTERN}</Pattern>
- </PatternLayout>
- <Policies>
- <SizeBasedTriggeringPolicy size="1 KB" />
- </Policies>
- <DefaultRolloverStrategy>
- <Delete basePath="/home/ec2-user/apps/wc-notification-service-2">
- <IfFileName glob="wc-notification.out-*" />
- <IfAny>
- <IfAccumulatedFileSize exceeds="5 KB" />
- <IfAccumulatedFileCount exceeds="5" />
- </IfAny>
- </Delete>
- </DefaultRolloverStrategy>
- </RollingFile>
- </Appenders>
- <Loggers>
- <Root level="info">
- <!--<AppenderRef ref="ConsoleAppender" /> -->
- <AppenderRef ref="FileAppender" />
- </Root>
- </Loggers>
- </Configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement