Include SLF libs, Logback libs, and Logback config

This commit is contained in:
bkuker 2012-10-26 11:08:19 -04:00
parent 8c49d33731
commit ee3aae6c8b
5 changed files with 15 additions and 0 deletions

View File

@ -33,5 +33,8 @@
<classpathentry kind="lib" path="lib/guice-multibindings-3.0.jar"/>
<classpathentry kind="lib" path="lib/javax.inject.jar"/>
<classpathentry kind="lib" path="lib/aopalliance.jar"/>
<classpathentry kind="lib" path="lib/logback-classic-1.0.7.jar"/>
<classpathentry kind="lib" path="lib/logback-core-1.0.7.jar"/>
<classpathentry kind="lib" path="lib/slf4j-api-1.7.2.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Binary file not shown.

Binary file not shown.

Binary file not shown.

12
core/src/logback.xml Normal file
View File

@ -0,0 +1,12 @@
<configuration>
<evaluator name="BAD"
class="ch.qos.logback.classic.boolex.OnErrorEvaluator" />
<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern><![CDATA[%-8relative %-5marker %-5level [%thread] %logger{2} - %message%n%caller{2, BAD}]]></pattern>
</encoder>
</appender>
<root level="TRACE">
<appender-ref ref="stdout" />
</root>
</configuration>