forked from RSNA/dcmrs-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging.xml
22 lines (17 loc) · 961 Bytes
/
logging.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!-- -->
<!-- Logging config for DICOMWeb broker -->
<!-- -->
<configuration debug="false">
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%.-1level [%d{MM/dd/yyyy HH:mm:ss.SSS}] %C.%M:%L "%m"%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="console" />
</root>
<logger name="org.dcm4che3" level="info" />
<logger name="org.dcm4che3.net.Dimse" level="warn" />
<logger name="com.mchange.v2" level="info" />
</configuration>