de7ef98da3d1afab829ae251427cababdb232c99
[policy/models.git] / models-sim / models-sim-dmaap / src / test / resources / logback-test.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4    Copyright (C) 2019 Nordix Foundation.
5   ================================================================================
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9   
10        http://www.apache.org/licenses/LICENSE-2.0
11   
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17   
18   SPDX-License-Identifier: Apache-2.0
19   ============LICENSE_END=========================================================
20 -->
21
22 <configuration>
23
24     <contextName>DMaaPSim</contextName>
25     <statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" />
26     <property name="LOG_DIR" value="${java.io.tmpdir}/pf_logging/" />
27
28     <!-- USE FOR STD OUT ONLY -->
29     <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
30         <encoder>
31             <Pattern>%d %contextName [%t] %level %logger{36} - %msg%n</Pattern>
32         </encoder>
33     </appender>
34
35     <root level="info">
36         <appender-ref ref="STDOUT" />
37     </root>
38
39     <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
40         <file>${LOG_DIR}/apex.log</file>
41         <encoder>
42             <pattern>%d %-5relative [procId=${processId}] [%thread] %-5level
43                 %logger{26} - %msg %n %ex{full}</pattern>
44         </encoder>
45     </appender>
46
47     <logger name="org.eclipse.jetty" level="info" additivity="false">
48         <appender-ref ref="STDOUT" />
49     </logger>
50
51     <logger name="org.onap.policy.models.sim.dmaap" level="trace" additivity="false">
52         <appender-ref ref="STDOUT" />
53     </logger>
54 </configuration>