summaryrefslogtreecommitdiff
path: root/src/main/resources/logback.xml
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon.szukalski@gmail.com>2012-10-01 13:35:00 +1000
committerSzymon Szukalski <szymon.szukalski@gmail.com>2012-10-01 13:35:00 +1000
commit6a16552fd38a91076169466328763cf541027e31 (patch)
tree826659a21331ef9e9cc9b0ee48f27456caa3a0c1 /src/main/resources/logback.xml
initial commit
Diffstat (limited to 'src/main/resources/logback.xml')
-rw-r--r--src/main/resources/logback.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml
new file mode 100644
index 0000000..47171c2
--- /dev/null
+++ b/src/main/resources/logback.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration debug="false">
+
+ <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+ <layout class="ch.qos.logback.classic.PatternLayout">
+ <pattern>%d [%16.16thread{16}] %.-1level %36.36logger{36} - %msg%n</pattern>
+ </layout>
+ </appender>
+
+ <root level="DEBUG">
+ <appender-ref ref="STDOUT"/>
+ </root>
+
+</configuration> \ No newline at end of file