blob: 50818a3d18630bdd21399f147dbe4a7d0d841896 [file] [log] [blame]
Itay Hasside2da86d2017-08-24 12:54:42 +00001################################################################################
2#
3# Licensed to the Apache Software Foundation (ASF) under one or more
4# contributor license agreements. See the NOTICE file distributed with
5# this work for additional information regarding copyright ownership.
6# The ASF licenses this file to You under the Apache License, Version 2.0
7# (the "License"); you may not use this file except in compliance with
8# the License. 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################################################################################
19
20# Root logger
21log4j.rootLogger=INFO, async, osgi:*
22log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer
23
24# Log Directory
25logDir=/var/log/onap
26componentName=sdnc
27logDirectory=${logDir}/${componentName}
28maxFileSize=100MB
29maxBackupIndex=20
30
31# CONSOLE appender not used by default
32log4j.appender.stdout=org.apache.log4j.ConsoleAppender
33log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
34log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd'T'HH:mm:ss.SSS}\t%-16.16t\t%-5.5p\t%c{36}\t%X{bundle.id} - %X{bundle.name} - %X{bundle.version}\t%m%n
35
36# Async appender forwarding to file appender
37log4j.appender.async=org.apache.log4j.AsyncAppender
38log4j.appender.async.appenders=out
39
40# File appender
41log4j.appender.out=org.apache.log4j.RollingFileAppender
42log4j.appender.out.layout=org.apache.log4j.xml.XMLLayout
43log4j.appender.out.layout.Properties=true
44log4j.appender.out.file=${logDirectory}/karaf.log
45log4j.appender.out.append=true
46log4j.appender.out.maxFileSize=${maxFileSize}
47log4j.appender.out.maxBackupIndex=${maxBackupIndex}
48
49# Sift appender
50log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender
51log4j.appender.sift.key=bundle.name
52log4j.appender.sift.default=karaf
53log4j.appender.sift.appender=org.apache.log4j.RollingFileAppender
54log4j.appender.sift.appender.layout=org.apache.log4j.xml.XMLLayout
55log4j.appender.sift.appender.layout.Properties=true
56log4j.appender.sift.appender.file=${logDirectory}/$\\{bundle.name\\}.log
57log4j.appender.sift.appender.append=true