Created
August 18, 2012 19:17
-
-
Save etoews/3389176 to your computer and use it in GitHub Desktop.
Logging with jclouds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<configuration scan="false"> | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<encoder> | |
<pattern>- %m%n</pattern> | |
</encoder> | |
</appender> | |
<logger name="jclouds.wire"> | |
<level value="DEBUG" /> | |
<appender-ref ref="STDOUT" /> | |
</logger> | |
<logger name="jclouds.headers"> | |
<level value="DEBUG" /> | |
<appender-ref ref="STDOUT" /> | |
</logger> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment