1bdb2f02a0f0862d490ce7764b64bc8e0529651f
[netconf.git] / netconf / tools / netconf-testtool / src / main / resources / logback.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3   ~ Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <configuration>
11     <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
12         <encoder>
13             <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
14         </encoder>
15     </appender>
16
17     <root level="INFO">
18         <appender-ref ref="STDOUT"/>
19     </root>
20
21     <appender name="RESULTS-FILE" class="ch.qos.logback.core.FileAppender">
22         <file>scale-results.log</file>
23         <append>true</append>
24         <encoder>
25           <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
26         </encoder>
27     </appender>
28
29     <logger name="results" level="DEBUG" additivity="false">
30        <appender-ref ref="RESULTS-FILE"/>
31     </logger>
32
33     <logger name="com.ning.http.client" level="WARN"/>
34 </configuration>