forked from diegoceccarelli/json-wikipedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logback.xml
30 lines (25 loc) · 1013 Bytes
/
logback.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<!-- For assistance related to logback-translator or configuration -->
<!-- files in general, please contact the logback user mailing list -->
<!-- at http://www.qos.ch/mailman/listinfo/logback-user -->
<!-- -->
<!-- For professional support please see -->
<!-- http://www.qos.ch/shop/products/professionalSupport -->
<!-- -->
<configuration>
<appender name="A1" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%date %-4r [%t] %-5p %c - %m%n</pattern>
</encoder>
</appender>
<root level="${log:-INFO}">
<appender-ref ref="A1" />
</root>
<logger name="it.cnr.isti.hpc.property" level="ERROR" />
<logger name="it.cnr.isti.hpc.text" level="ERROR" />
<logger name="it.cnr.isti.hpc.jdbm" level="ERROR" />
<logger name="it.cnr.isti.hpc.dexter.lucene" level="ERROR" />
<logger name="it.cnr.isti.hpc.dexter.spot.repo" level="ERROR" />
<logger name="it.cnr.isti.hpc.eire.query.MostProbableQueryEntityReader"
level="ERROR" />
</configuration>