#53 - Set up Slf4j logging and excluded Commons Logging.

This commit is contained in:
Oliver Gierke
2013-02-18 19:27:12 +01:00
parent 8039c306e9
commit 35ad18839e
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?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.hateoas" level="error" />
<root level="error">
<appender-ref ref="console" />
</root>
</configuration>