Upgrade to latest oparent
[aaf/authz.git] / authz-batch / src / main / config / log4j.properties
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.rootLogger=INFO,FA
23 log4j.logger.aspr=INFO,aspr
24 log4j.additivity.aspr=false
25 log4j.logger.authz-batch=INFO,authz-batch
26 log4j.logger.sync=INFO,sync
27 log4j.additivity.sync=false
28 log4j.logger.jobchange=INFO,jobchange
29 log4j.additivity.jobchange=false
30 log4j.logger.validateuser=INFO,validateuser
31 log4j.additivity.validateuser=false
32
33
34 log4j.appender.FA=org.apache.log4j.RollingFileAppender
35 log4j.appender.FA.File=${LOG4J_FILENAME_authz-batch}
36 log4j.appender.FA.MaxFileSize=10000KB
37 log4j.appender.FA.MaxBackupIndex=7
38 log4j.appender.FA.layout=org.apache.log4j.PatternLayout 
39 log4j.appender.FA.layout.ConversionPattern=%d %p [%c] - %m %n
40
41 log4j.appender.stderr=org.apache.log4j.ConsoleAppender
42 log4j.appender.stderr.layout=org.apache.log4j.PatternLayout
43 log4j.appender.stderr.layout.ConversionPattern=%d %p [%c] - %m %n
44 log4j.appender.stderr.Target=System.err
45
46 log4j.appender.authz-batch=org.apache.log4j.DailyRollingFileAppender 
47 log4j.appender.authz-batch.encoding=UTF-8
48 log4j.appender.authz-batch.layout=org.apache.log4j.PatternLayout
49 log4j.appender.authz-batch.layout.ConversionPattern=%d [%p] %m %n
50 log4j.appender.authz-batch.File=${LOG4J_FILENAME_authz-batch}
51 log4j.appender.authz-batch.DatePattern='.'yyyy-MM
52
53 log4j.appender.aspr=org.apache.log4j.DailyRollingFileAppender 
54 log4j.appender.aspr.encoding=UTF-8
55 log4j.appender.aspr.layout=org.apache.log4j.PatternLayout
56 log4j.appender.aspr.layout.ConversionPattern=%d [%p] %m %n
57 log4j.appender.aspr.File=${LOG4J_FILENAME_aspr}
58 log4j.appender.aspr.DatePattern='.'yyyy-MM
59
60
61 log4j.appender.jobchange=org.apache.log4j.RollingFileAppender
62 log4j.appender.jobchange.File=${LOG4J_FILENAME_jobchange}
63 log4j.appender.jobchange.MaxFileSize=10000KB
64 log4j.appender.jobchange.MaxBackupIndex=7
65 log4j.appender.jobchange.layout=org.apache.log4j.PatternLayout 
66 log4j.appender.jobchange.layout.ConversionPattern=%d %p [%c] - %m %n
67
68 log4j.appender.validateuser=org.apache.log4j.RollingFileAppender
69 log4j.appender.validateuser.File=${LOG4J_FILENAME_validateuser}
70 log4j.appender.validateuser.MaxFileSize=10000KB
71 log4j.appender.validateuser.MaxBackupIndex=7
72 log4j.appender.validateuser.layout=org.apache.log4j.PatternLayout 
73 log4j.appender.validateuser.layout.ConversionPattern=%d %p [%c] - %m %n
74
75 log4j.appender.sync=org.apache.log4j.DailyRollingFileAppender 
76 log4j.appender.sync.encoding=UTF-8
77 log4j.appender.sync.layout=org.apache.log4j.PatternLayout
78 log4j.appender.sync.layout.ConversionPattern=%d [%p] %m %n
79 log4j.appender.sync.File=${LOG4J_FILENAME_sync}
80 log4j.appender.sync.DatePattern='.'yyyy-MM
81
82 # General Apache libraries
83 log4j.logger.org.apache=WARN
84