mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 20:31:34 +02:00
18 lines
674 B
XML
18 lines
674 B
XML
<configuration>
|
|
<!-- Log everything (subject to logger and root levels set below) to stdout. -->
|
|
<appender name="stderr" class="ch.qos.logback.core.ConsoleAppender">
|
|
<target>System.err</target>
|
|
<encoder>
|
|
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%thread] %logger{0}: %msg%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<!-- Set log levels for the application (or parts of the application). -->
|
|
<logger name="uk.ac.ic.wlgitbridge" level="INFO" />
|
|
|
|
<!-- The root log level determines how much our dependencies put in the logs. -->
|
|
<root level="WARN">
|
|
<appender-ref ref="stderr" />
|
|
</root>
|
|
</configuration>
|