72cd64414236307507611548c38bc5bf12c42a3a
[aai/champ.git] / champ-lib / champ-core / src / test / resources / logback.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     ============LICENSE_START==========================================
5     org.onap.aai
6     ===================================================================
7     Copyright © 2017 AT&T Intellectual Property. All rights reserved.
8     Copyright © 2017 Amdocs
9     ===================================================================
10     Licensed under the Apache License, Version 2.0 (the "License");
11     you may not use this file except in compliance with the License.
12     You may obtain a copy of the License at
13
14            http://www.apache.org/licenses/LICENSE-2.0
15
16     Unless required by applicable law or agreed to in writing, software
17     distributed under the License is distributed on an "AS IS" BASIS,
18     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19     See the License for the specific language governing permissions and
20     limitations under the License.
21     ============LICENSE_END============================================
22     ECOMP is a trademark and service mark of AT&T Intellectual Property.
23
24 -->
25 <configuration>
26
27         <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
28                 <encoder>
29                     <pattern>%d %-5level [%thread] %logger{255}: %msg%n</pattern>
30                 </encoder>
31         </appender>
32
33         <logger name="com.thinkaurelius.titan" level="OFF"/>
34         <logger name="com.netflix.astyanax" level="OFF"/>
35         <logger name="com.datastax" level="ERROR"/>
36         <logger name="org.apache.hadoop" level="ERROR"/>
37         <logger name="org.apache.zookeeper" level="ERROR"/>
38
39         <root level="INFO">
40                 <appender-ref ref="STDOUT" />
41         </root>
42
43 </configuration>