Add declarative acceptance tests
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / test / resources / logback-test.xml
1 <!--\r
2   ~ Copyright © 2017-2018 AT&T Intellectual Property.\r
3   ~ Modifications Copyright (C) 2019 Nordix Foundation.\r
4   ~\r
5   ~ Licensed under the Apache License, Version 2.0 (the "License");\r
6   ~ you may not use this file except in compliance with the License.\r
7   ~ You may obtain a copy of the License at\r
8   ~\r
9   ~     http://www.apache.org/licenses/LICENSE-2.0\r
10   ~\r
11   ~ Unless required by applicable law or agreed to in writing, software\r
12   ~ distributed under the License is distributed on an "AS IS" BASIS,\r
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14   ~ See the License for the specific language governing permissions and\r
15   ~ limitations under the License.\r
16   -->\r
17 \r
18 <configuration>\r
19     <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">\r
20         <encoder>\r
21             <pattern>%d{HH:mm:ss.SSS} %-5level %-40.40logger{39} : %msg%n</pattern>\r
22         </encoder>\r
23     </appender>\r
24 \r
25     <logger name="org.springframework.web.HttpLogging" level="trace"/>\r
26     <logger name="org.springframework.web.reactive.function.client.ExchangeFunctions" level="trace"/>\r
27 \r
28     <!-- Helpful to optimize Spring Context caching to speed-up tests\r
29          and prevent resorting to @DirtiesContext as much as possible -->\r
30     <logger name="org.springframework.test.context.cache" level="debug"/>\r
31 \r
32     <!-- Please refer to https://thoughts-on-java.org/hibernate-logging-guide/\r
33          for a lengthy discussion on good Hibernate logging practices -->\r
34     <logger name="org.hibernate.SQL" level="debug"/>\r
35     <logger name="org.hibernate.type.descriptor.sql" level="trace"/>\r
36 \r
37     <root level="info">\r
38         <appender-ref ref="STDOUT"/>\r
39     </root>\r
40 \r
41 </configuration>\r