Optimizing Imports and Formatting code
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / dmaap-lib / src / test / resources / logback-test.xml
1 <!--
2   ~  ============LICENSE_START=======================================================
3   ~  ONAP - CDS
4   ~  ================================================================================
5   ~  Copyright (C) 2019 Huawei Technologies Co., Ltd. All rights reserved.
6   ~  ================================================================================
7   ~  Licensed under the Apache License, Version 2.0 (the "License");
8   ~  you may not use this file except in compliance with the License.
9   ~  You may obtain a copy of the License at
10   ~
11   ~       http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~  Unless required by applicable law or agreed to in writing, software
14   ~  distributed under the License is distributed on an "AS IS" BASIS,
15   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   ~  See the License for the specific language governing permissions and
17   ~  limitations under the License.
18   ~  ============LICENSE_END=========================================================
19   -->
20
21 <configuration>
22     <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
23         <!-- encoders are assigned the type
24              ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
25         <encoder>
26             <pattern>%d{HH:mm:ss.SSS} %-5level %logger{100} - %msg%n</pattern>
27         </encoder>
28     </appender>
29
30     <logger name="org.springframework.test" level="warn"/>
31     <logger name="org.springframework" level="warn"/>
32     <logger name="org.hibernate" level="info"/>
33     <logger name="org.onap.ccsdk.cds.blueprintsprocessor" level="info"/>
34
35     <root level="warn">
36         <appender-ref ref="STDOUT"/>
37     </root>
38
39 </configuration>