Add logback sample application

Add a logback sample application to demonstrate how `logback-spring.xml`
can be used for customization.

See gh-2558
This commit is contained in:
Phillip Webb
2015-06-26 13:26:16 -07:00
parent 09eed727fe
commit 5bc8f0f708
6 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="sample.logback" level="DEBUG"/>
</configuration>