Moving all files to root directory
[appc.git] / appc-asdc-listener / appc-asdc-listener-bundle / src / main / resources / ci / conf / log4j.properties
1 ###
2 # ============LICENSE_START=======================================================
3 # openECOMP : APP-C
4 # ================================================================================
5 # Copyright (C) 2017 AT&T Intellectual Property. All rights
6 #                                               reserved.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11
12 #      http://www.apache.org/licenses/LICENSE-2.0
13
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END=========================================================
20 ###
21
22 # Define the root logger with appender file
23 log4j.rootLogger = DEBUG, FILE, stdout
24
25 # Define the file appender
26 log4j.appender.FILE=org.apache.log4j.RollingFileAppender
27 log4j.appender.FILE.File=${targetlog}logs/ci-log.out
28
29 # Define the layout for file appender
30 log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
31 log4j.appender.FILE.layout.conversionPattern=%d{yyyy-MM-dd HH:mm:ss} %5p [%10c] : %m%n
32
33 # Set the maximum file size before rollover
34 log4j.appender.FILE.maxFileSize=5MB
35
36 # Set the the backup index
37 log4j.appender.FILE.maxBackupIndex=10
38
39
40 #############################################################
41
42 # Direct log messages to stdout
43 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
44 log4j.appender.stdout.Target=System.out
45 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
46 #log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
47 log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %5p %10c:%L - %m%n
48
49 log4j.logger.org.apache.cassandra.service.StorageProxy=DEBUG
50 log4j.logger.com.thinkaurelius.titan.diskstorage.cassandra.CassandraTransaction=INFO, FILE, stdout
51
52 log4j.logger.org.openecomp.tlv.sdc.ci.tests.utils=TRACE, FILE, stdout
53 log4j.additivity.org.openecomp.tlv.sdc.ci.tests.utils=false
54
55