aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test/resources/logback.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/test/resources/logback.xml')
-rw-r--r--tests/src/test/resources/logback.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/src/test/resources/logback.xml b/tests/src/test/resources/logback.xml
new file mode 100644
index 0000000..1470b51
--- /dev/null
+++ b/tests/src/test/resources/logback.xml
@@ -0,0 +1,12 @@
+<configuration>
+
+ <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+ <encoder>
+ <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
+ </encoder>
+ </appender>
+
+ <root level="INFO">
+ <appender-ref ref="STDOUT"/>
+ </root>
+</configuration>