diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-10 20:51:38 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-10 20:51:38 +0100 |
commit | 09d297a383b60cfdba6b6388cc54c9c8fa603e75 (patch) | |
tree | 38f2d131bcbb352717c6b7e65cb5fd397071239c /src/main/resources | |
parent | 7838a06e5521db39aee8b3b87785fcb5e32cd7ad (diff) | |
download | esper-testing-09d297a383b60cfdba6b6388cc54c9c8fa603e75.tar.gz esper-testing-09d297a383b60cfdba6b6388cc54c9c8fa603e75.tar.bz2 esper-testing-09d297a383b60cfdba6b6388cc54c9c8fa603e75.tar.xz esper-testing-09d297a383b60cfdba6b6388cc54c9c8fa603e75.zip |
o Fixing another bug in the unbreakable poller, stored one build too many in some progress objects too.
o Got the logback.xml + system properties combination to finally work.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/logback.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml index b502003..0af2e89 100644 --- a/src/main/resources/logback.xml +++ b/src/main/resources/logback.xml @@ -1,10 +1,10 @@ <configuration debug="false"> <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> - <file>logs/${logging.app}.log</file> + <file>logs/${loggingApp}.log</file> <append>true</append> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <fileNamePattern>logs/${logging.app}-%d.log</fileNamePattern> + <fileNamePattern>logs/${loggingApp}-%d.log</fileNamePattern> </rollingPolicy> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %-30logger{1} - %msg%n</pattern> |