Skip to content

Commit

Permalink
#2 - Added Logback configuration and ditched Log4J.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Nov 22, 2012
1 parent c46f965 commit cfddee9
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 24 deletions.
12 changes: 0 additions & 12 deletions core/src/test/resources/log4j.properties

This file was deleted.

18 changes: 18 additions & 0 deletions core/src/test/resources/logback.xml
@@ -0,0 +1,18 @@
<?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>

<!--
<logger name="org.springframework" level="debug" />
-->

<root level="warn">
<appender-ref ref="console" />
</root>

</configuration>
12 changes: 0 additions & 12 deletions integration/src/test/resources/log4j.properties

This file was deleted.

18 changes: 18 additions & 0 deletions integration/src/test/resources/logback.xml
@@ -0,0 +1,18 @@
<?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>

<!--
<logger name="org.springframework" level="debug" />
-->

<root level="warn">
<appender-ref ref="console" />
</root>

</configuration>

0 comments on commit cfddee9

Please sign in to comment.