Skip to content

Commit

Permalink
CORE-2006: renamed conf/test/logback.xml to conf/test/logback-test.xm…
Browse files Browse the repository at this point in the history
…l in order to fix some errors that showed up when running `lein eastwood`
  • Loading branch information
slr71 committed Aug 14, 2024
1 parent d5e827c commit 3b5976d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions conf/test/logback-test.xml
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>

0 comments on commit 3b5976d

Please sign in to comment.