Merge pull request #260 from quadrik/logging
fixes #259: disable file logging
This commit is contained in:
@@ -42,6 +42,11 @@
|
|||||||
<artifactId>jargs</artifactId>
|
<artifactId>jargs</artifactId>
|
||||||
<version>2.0-SNAPSHOT</version>
|
<version>2.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.janino</groupId>
|
||||||
|
<artifactId>janino</artifactId>
|
||||||
|
<version>3.1.6</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.riversun</groupId>
|
<groupId>org.riversun</groupId>
|
||||||
<artifactId>bigdoc</artifactId>
|
<artifactId>bigdoc</artifactId>
|
||||||
|
|||||||
@@ -24,7 +24,11 @@
|
|||||||
|
|
||||||
<!-- Configure so that it outputs to both console and log file -->
|
<!-- Configure so that it outputs to both console and log file -->
|
||||||
<root level="INFO">
|
<root level="INFO">
|
||||||
<appender-ref ref="FILE" />
|
<if condition='!isDefined("disable-file-logging")'>
|
||||||
|
<then>
|
||||||
|
<appender-ref ref="FILE" />
|
||||||
|
</then>
|
||||||
|
</if>
|
||||||
<appender-ref ref="STDERR" />
|
<appender-ref ref="STDERR" />
|
||||||
</root>
|
</root>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
Reference in New Issue
Block a user