[BAEL-1300] Custom Logback Appender (#3193)

* BAEL-1300 Custom logback appender

* BAEL-1300 fix to logback module

* relativePath
This commit is contained in:
Taylor Daugherty
2017-12-04 01:40:21 -05:00
committed by maibin
parent 63d4e7d014
commit 7f23c45ef4
12 changed files with 231 additions and 0 deletions
@@ -0,0 +1,14 @@
<configuration debug="true">
<appender name="map" class="com.baeldung.logback.MapAppender">
<prefix>test</prefix>
</appender>
<appender name="badMap" class="com.baeldung.logback.MapAppender"/>
<root level="debug">
<appender-ref ref="map"/>
<appender-ref ref="badMap"/>
</root>
</configuration>