Skip to content

Commit

Permalink
added logger configuration for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fmueller committed Apr 26, 2014
1 parent b1a2ba5 commit a4bc085
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d %5p %40.40c:%4L - %m%n</pattern>
</encoder>
</appender>

<root level="DEBUG">
<appender-ref ref="console"/>
</root>
</configuration>

0 comments on commit a4bc085

Please sign in to comment.