-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CORE-2006: renamed conf/test/logback.xml to conf/test/logback-test.xm…
…l in order to fix some errors that showed up when running `lein eastwood`
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<configuration scan="true" debug="false"> | ||
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d %-5level [%thread] %logger: %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
|
||
<Logger name="terrain" level="DEBUG" /> | ||
<!-- Configuration Logging --> | ||
<Logger name="clojure-commons.config" level="INFO" /> | ||
<!-- Request Logging --> | ||
<Logger name="AccessLogger" level="WARN" /> | ||
<!-- Jargon Logging --> | ||
<Logger name="org.irods.jargon" level="WARN" /> | ||
<!-- Service Call Trace Message Logging --> | ||
<Logger name="trace" level="TRACE" /> | ||
|
||
<!-- Uncomment to enable HTTP client debugging. --> | ||
<!-- | ||
<logger name="org.apache.http" level="DEBUG" /> | ||
--> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="CONSOLE"/> | ||
</root> | ||
</configuration> |