blob: 6e0ea863fc14c60afc72767eb4ce51c4054c21f2 [file] [log] [blame]
BT29839cbcdac2018-08-16 21:48:07 -06001<?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4 * ============LICENSE_START=======================================================
5 * ONAP : CCSDK.apps
6 * ================================================================================
7 * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 -->
22
23<configuration scan="true" scanPeriod="3 seconds" debug="false">
24
25 <statusListener class="ch.qos.logback.core.status.NopStatusListener" />
26
27 <property name="namespace" value="${kubernetes.namespace}"></property>
28
29 <property name="defaultPattern"
30 value="%d{yyyy-MM-dd HH:mm:ss.SSS} $ thread:%X{threadId} %-5level NS:o.o.c.a.m.neng %logger{20} [ host:%X{hostname} serv:%X{serviceName} ver:%X{version} tx:%X{transactionId} conv:%X{conversationId} reqTime:%X{requestTimestamp} respTime:%X{responseTimestamp} dur:%X{duration}] %m%n" />
31
32 <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
33 <encoder>
34 <pattern>${defaultPattern}</pattern>
35 </encoder>
36 </appender>
37 <root level="INFO">
38 <appender-ref ref="STDOUT" />
39 </root>
40</configuration>