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