diff options
Diffstat (limited to 'juick-api/src/main/webapp/resources')
-rw-r--r-- | juick-api/src/main/webapp/resources/logback.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/juick-api/src/main/webapp/resources/logback.xml b/juick-api/src/main/webapp/resources/logback.xml new file mode 100644 index 00000000..9e3bf16c --- /dev/null +++ b/juick-api/src/main/webapp/resources/logback.xml @@ -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 |