Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 1 | ######### |
| 2 | # ============LICENSE_START==================================================== |
| 3 | # org.onap.aaf |
| 4 | # =========================================================================== |
| 5 | # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | # =========================================================================== |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
Instrumental | 12f7f46 | 2018-04-23 15:43:47 -0500 | [diff] [blame] | 10 | # |
Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
Instrumental | 12f7f46 | 2018-04-23 15:43:47 -0500 | [diff] [blame] | 12 | # |
Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END==================================================== |
Instrumental | 12f7f46 | 2018-04-23 15:43:47 -0500 | [diff] [blame] | 19 | # |
Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 20 | |
Instrumental | 12f7f46 | 2018-04-23 15:43:47 -0500 | [diff] [blame] | 21 | log4j.appender.INIT=org.apache.log4j.DailyRollingFileAppender |
| 22 | log4j.appender.INIT.File=${LOG4J_FILENAME_init} |
| 23 | log4j.appender.INIT.DatePattern='.'yyyy-MM-dd |
| 24 | log4j.appender.INIT.layout=org.apache.log4j.PatternLayout |
| 25 | log4j.appender.INIT.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSSZ} %m %n |
| 26 | |
| 27 | log4j.appender.SRVR=org.apache.log4j.DailyRollingFileAppender |
| 28 | log4j.appender.SRVR.File=${LOG4J_FILENAME_service} |
| 29 | log4j.appender.SRVR.DatePattern='.'yyyy-MM-dd |
| 30 | log4j.appender.SRVR.layout=org.apache.log4j.PatternLayout |
| 31 | log4j.appender.SRVR.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSSZ} %p [%c] %m %n |
| 32 | |
| 33 | log4j.appender.AUDIT=org.apache.log4j.DailyRollingFileAppender |
| 34 | log4j.appender.AUDIT.File=${LOG4J_FILENAME_audit} |
| 35 | log4j.appender.AUDIT.DatePattern='.'yyyy-MM-dd |
| 36 | log4j.appender.AUDIT.layout=org.apache.log4j.PatternLayout |
| 37 | log4j.appender.AUDIT.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss,SSSZ} %m %n |
| 38 | |
| 39 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender |
| 40 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
| 41 | log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] %m %n |
| 42 | |
| 43 | # General Apache libraries |
| 44 | log4j.rootLogger=WARN.SRVR |
| 45 | log4j.logger.org.apache=WARN,SRVR |
| 46 | log4j.logger.com.datastax=WARN,SRVR |
Instrumental | fa61e47 | 2018-11-10 08:35:36 -0600 | [diff] [blame] | 47 | log4j.logger.init=INFO,INIT,stdout |
| 48 | log4j.logger.service=${LOGGING_LEVEL},SRVR,stdout |
Instrumental | 12f7f46 | 2018-04-23 15:43:47 -0500 | [diff] [blame] | 49 | log4j.logger.audit=INFO,AUDIT |
| 50 | # Additional configs, not cauth with Root Logger |
| 51 | log4j.logger.io.netty=INFO,SRVR |
| 52 | log4j.logger.org.eclipse=INFO,SRVR |
| 53 | |
| 54 | |