ICS sample producer and consumer
[nonrtric.git] / sample-services / ics-producer-consumer / consumer / src / main / resources / logback.xml
1 <!--
2 * ========================LICENSE_START=================================
3 * O-RAN-SC
4 *
5 * Copyright (C) 2024 OpenInfra Foundation Europe. 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="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
23         <file>logging.log</file>
24         <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
25             <fileNamePattern>logging.%i.log.zip</fileNamePattern>
26             <minIndex>1</minIndex>
27             <maxIndex>10</maxIndex>
28         </rollingPolicy>
29         <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
30             <maxFileSize>10MB</maxFileSize>
31         </triggeringPolicy>
32         <encoder>
33             <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n</pattern>
34         </encoder>
35     </appender>
36     <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
37         <encoder>
38             <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n</pattern>
39         </encoder>
40     </appender>
41     <root level="INFO">
42         <appender-ref ref="FILE"/>
43         <appender-ref ref="STDOUT"/>
44     </root>
45 </configuration>