NIFI-297:

- Fixed name of the nifi user log.
This commit is contained in:
Matt Gilman 2015-02-02 13:16:34 -05:00
parent b4d07e262f
commit 94b39036dc
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
</appender> </appender>
<appender name="USER_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> <appender name="USER_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>logs/${project.artifactId}-user.log</file> <file>logs/nifi-user.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- <!--
For daily rollover, use 'user_%d.log'. For daily rollover, use 'user_%d.log'.
@ -50,7 +50,7 @@
To GZIP rolled files, replace '.log' with '.log.gz'. To GZIP rolled files, replace '.log' with '.log.gz'.
To ZIP rolled files, replace '.log' with '.log.zip'. To ZIP rolled files, replace '.log' with '.log.zip'.
--> -->
<fileNamePattern>./logs/${project.artifactId}-user_%d.log</fileNamePattern> <fileNamePattern>./logs/nifi-user_%d.log</fileNamePattern>
<!-- keep 30 log files worth of history --> <!-- keep 30 log files worth of history -->
<maxHistory>30</maxHistory> <maxHistory>30</maxHistory>
</rollingPolicy> </rollingPolicy>