blob: e1c9db740e1a347a3583250029f5090e75c1a648 [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001###############################################################################
2# Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
3###############################################################################
4#
5# Licensed to the Apache Software Foundation (ASF) under one
6# or more contributor license agreements. See the NOTICE file
7# distributed with this work for additional information
8# regarding copyright ownership. The ASF licenses this file
9# to you under the Apache License, Version 2.0 (the
10# "License"); you may not use this file except in compliance
11# with the License. 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,
16# software distributed under the License is distributed on an
17# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18# KIND, either express or implied. See the License for the
19# specific language governing permissions and limitations
20# under the License.
21#
22log4j.appender.INIT=org.apache.log4j.DailyRollingFileAppender
23log4j.appender.INIT.File=_LOG_DIR_/${LOG4J_FILENAME_init}
24log4j.appender.INIT.DatePattern='.'yyyy-MM-dd
25#log4j.appender.INIT.MaxFileSize=_MAX_LOG_FILE_SIZE_
26#log4j.appender.INIT.MaxBackupIndex=_MAX_LOG_FILE_BACKUP_COUNT_
27log4j.appender.INIT.layout=org.apache.log4j.PatternLayout
28log4j.appender.INIT.layout.ConversionPattern=%d %p [%c] %m %n
29
30log4j.appender.GUI=org.apache.log4j.DailyRollingFileAppender
31log4j.appender.GUI.File=_LOG_DIR_/${LOG4J_FILENAME_gui}
32log4j.appender.GUI.DatePattern='.'yyyy-MM-dd
33#log4j.appender.GUI.MaxFileSize=_MAX_LOG_FILE_SIZE_
34#log4j.appender.GUI.MaxBackupIndex=_MAX_LOG_FILE_BACKUP_COUNT_
35log4j.appender.GUI.layout=org.apache.log4j.PatternLayout
36log4j.appender.GUI.layout.ConversionPattern=%d %p [%c] %m %n
37
38log4j.appender.AUDIT=org.apache.log4j.DailyRollingFileAppender
39log4j.appender.AUDIT.File=_LOG_DIR_/${LOG4J_FILENAME_audit}
40log4j.appender.AUDIT.DatePattern='.'yyyy-MM-dd
41#log4j.appender.GUI.MaxFileSize=_MAX_LOG_FILE_SIZE_
42#log4j.appender.GUI.MaxBackupIndex=_MAX_LOG_FILE_BACKUP_COUNT_
43log4j.appender.AUDIT.layout=org.apache.log4j.PatternLayout
44log4j.appender.AUDIT.layout.ConversionPattern=%d %p [%c] %m %n
45
46log4j.appender.stdout=org.apache.log4j.ConsoleAppender
47log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
48log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] %m %n
49
50# General Apache libraries
51log4j.rootLogger=WARN
52log4j.logger.org.apache=WARN,INIT
53log4j.logger.dme2=WARN,INIT
54log4j.logger.init=INFO,INIT
55log4j.logger.gui=_LOG4J_LEVEL_,GUI
56log4j.logger.audit=INFO,AUDIT
57