blob: 7bc7fa15db2c6871e03feaea07362e6d8e894521 [file] [log] [blame]
Arjun E K4554ecd2018-12-24 02:19:10 -05001#################################################################################
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, out, osgi:*
22log4j.logger.securityAudit=INFO, Audit
23log4j.throwableRenderer=org.apache.log4j.OsgiThrowableRenderer
24
25# CONSOLE appender not used by default
26log4j.appender.stdout=org.apache.log4j.ConsoleAppender
27log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
28log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n
29
30# File appender
31log4j.appender.out=org.apache.log4j.RollingFileAppender
32log4j.appender.out.layout=org.apache.log4j.PatternLayout
33log4j.appender.out.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} | %m%n
34log4j.appender.out.file=${karaf.data}/log/karaf.log
35log4j.appender.out.append=true
36log4j.appender.out.filter.a=org.apache.log4j.varia.StringMatchFilter
37log4j.appender.out.filter.a.StringToMatch=securityAudit
38log4j.appender.out.filter.a.AcceptOnMatch=false
39log4j.appender.out.maxFileSize=100MB
40log4j.appender.out.maxBackupIndex=10
41
42# audit log File appender
43log4j.appender.Audit=org.apache.log4j.RollingFileAppender
44log4j.appender.Audit.layout=org.apache.log4j.PatternLayout
45log4j.appender.Audit.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %X{bundle.id} | %m%n
46log4j.appender.Audit.file=${karaf.data}/log/audit.log
47log4j.appender.Audit.append=true
48log4j.appender.Audit.maxFileSize=100MB
49log4j.appender.Audit.maxBackupIndex=10
50
51# Sift appender
52log4j.appender.sift=org.apache.log4j.sift.MDCSiftingAppender
53log4j.appender.sift.key=bundle.name
54log4j.appender.sift.default=karaf
55log4j.appender.sift.appender=org.apache.log4j.FileAppender
56log4j.appender.sift.appender.layout=org.apache.log4j.PatternLayout
57log4j.appender.sift.appender.layout.ConversionPattern=%d{ISO8601} | %-5.5p | %-16.16t | %-32.32c{1} | %m%n
58log4j.appender.sift.appender.file=${karaf.data}/log/$\\{bundle.name\\}.log
59log4j.appender.sift.appender.append=true
60