]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.logback.configuration/logback.xml
Merge commit 'e87f096'
[simantics/platform.git] / bundles / org.simantics.logback.configuration / logback.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <configuration>
3
4   <appender name="console" class="ch.qos.logback.core.ConsoleAppender">
5     <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
6     <encoder>
7       <pattern>%-5p [%d] %c: %m%n%rEx</pattern>
8     </encoder>
9   </appender>
10
11   <appender name="async-console" class="ch.qos.logback.classic.AsyncAppender">
12     <appender-ref ref="console" />
13   </appender>
14
15   <root level="debug">
16     <appender-ref ref="async-console" />
17   </root>
18 </configuration>