Skip to content

Commit

Permalink
Added log4j config
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Mar 13, 2016
1 parent 8a62b8c commit e8067e6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/main/resources/log4j2.xml
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Default log4j2 configuration file for XML Calabash -->
<Configuration status="warn">
<Appenders>
<Console name="Console" target="SYSTEM_ERR">
<PatternLayout pattern="%-5level: %msg%n" />
</Console>
</Appenders>
<Loggers>
<Logger name="com.xmlcalabash" level="info" additivity="false">
<AppenderRef ref="Console"/>
</Logger>
<Root level="warn">
<AppenderRef ref="Console" />
</Root>
</Loggers>
</Configuration>

0 comments on commit e8067e6

Please sign in to comment.