added logback instead of JUL to resolve issue #164

Former-commit-id: 226e52fc03b22501358d6d147d3fa042c274f1f4
This commit is contained in:
Jeremy Long
2015-06-21 06:18:54 -04:00
parent d9a322b533
commit 7fa306dd9a
2 changed files with 48 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
<configuration>
<contextName>dependency-check</contextName>
<!-- Logging configuration -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<Target>System.out</Target>
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
</filter>
<encoder>
<pattern>[%level] %msg%n</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="console"/>
</root>
</configuration>