Skip to content

Commit

Permalink
tame logging and fix date format
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed Jun 23, 2020
1 parent d9a287b commit 026206f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zulia-server/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<withJansi>true</withJansi>
<!-- 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>
<pattern>%cyan(%date{ISO8601}) %gray([%thread]) %highlight(%-5level) %magenta(%logger{36}) - %msg%n</pattern>
</encoder>
</appender>

<root level="info">
<appender-ref ref="STDOUT"/>
</root>
<logger name="io.micronaut.context" level="TRACE"/>
</configuration>
</configuration>

0 comments on commit 026206f

Please sign in to comment.