This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clj-browserchannel/chat-demo/resources/logback.xml

19 lines
575 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="R" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{ISO8601} %-5p [%c] - %m%n</pattern>
</encoder>
</appender>
<!-- these are just to remove some "chatty" logging output, especially for DEBUG and lower.
you don't necessarily need this yourself -->
<logger name="org.eclipse.jetty" level="INFO"/>
<logger name="org.xnio" level="INFO"/>
<logger name="io.undertow" level="INFO"/>
<root level="${ROOT_LEVEL:-INFO}">
<appender-ref ref="R"/>
</root>
</configuration>