sg481n | bd890c5 | 2017-08-28 12:11:35 -0400 | [diff] [blame] | 1 | ############################################################################### |
| 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 | # |
| 22 | log4j.appender.INIT=org.apache.log4j.DailyRollingFileAppender |
| 23 | log4j.appender.INIT.File=_LOG_DIR_/${LOG4J_FILENAME_init} |
| 24 | log4j.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_ |
| 27 | log4j.appender.INIT.layout=org.apache.log4j.PatternLayout |
| 28 | log4j.appender.INIT.layout.ConversionPattern=%d %p [%c] %m %n |
| 29 | |
| 30 | log4j.appender.GUI=org.apache.log4j.DailyRollingFileAppender |
| 31 | log4j.appender.GUI.File=_LOG_DIR_/${LOG4J_FILENAME_gui} |
| 32 | log4j.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_ |
| 35 | log4j.appender.GUI.layout=org.apache.log4j.PatternLayout |
| 36 | log4j.appender.GUI.layout.ConversionPattern=%d %p [%c] %m %n |
| 37 | |
| 38 | log4j.appender.AUDIT=org.apache.log4j.DailyRollingFileAppender |
| 39 | log4j.appender.AUDIT.File=_LOG_DIR_/${LOG4J_FILENAME_audit} |
| 40 | log4j.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_ |
| 43 | log4j.appender.AUDIT.layout=org.apache.log4j.PatternLayout |
| 44 | log4j.appender.AUDIT.layout.ConversionPattern=%d %p [%c] %m %n |
| 45 | |
| 46 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender |
| 47 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
| 48 | log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] %m %n |
| 49 | |
| 50 | # General Apache libraries |
| 51 | log4j.rootLogger=WARN |
| 52 | log4j.logger.org.apache=WARN,INIT |
| 53 | log4j.logger.dme2=WARN,INIT |
| 54 | log4j.logger.init=INFO,INIT |
| 55 | log4j.logger.gui=_LOG4J_LEVEL_,GUI |
| 56 | log4j.logger.audit=INFO,AUDIT |
| 57 | |