aboutsummaryrefslogtreecommitdiff
path: root/juick-core/src/main/resources/logback.xml.example
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-11-10 21:44:54 +0300
committerGravatar Vitaly Takmazov2016-11-10 21:44:54 +0300
commit264d588e6fc239daecc0fd09b98d6872c1beab96 (patch)
treeada58a964b30232b7658a591e3740f3e88866d40 /juick-core/src/main/resources/logback.xml.example
parent09221ab5695e99b2df1130ea923c39625ec85429 (diff)
move logback config to example
Diffstat (limited to 'juick-core/src/main/resources/logback.xml.example')
-rw-r--r--juick-core/src/main/resources/logback.xml.example13
1 files changed, 13 insertions, 0 deletions
diff --git a/juick-core/src/main/resources/logback.xml.example b/juick-core/src/main/resources/logback.xml.example
new file mode 100644
index 00000000..9e3bf16c
--- /dev/null
+++ b/juick-core/src/main/resources/logback.xml.example
@@ -0,0 +1,13 @@
+<configuration>
+ <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+ <!-- encoders are assigned the type
+ ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
+ <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> \ No newline at end of file