blob: 6ad25643d70287dd280acd20812209f9359e370e [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001###
2# ============LICENSE_START=======================================================
3# policy-management
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
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
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=========================================================
19###
20
21log4j.rootLogger=INFO,stdout
22
23log4j.logger.org.apache.http.headers=INFO,stdout
24log4j.logger.org.apache.http.wire=INFO,stdout
25log4j.logger.networkLogger=INFO,network
26
27log4j.additivity.networkLogger=false
28
29log4j.appender.stdout=org.apache.log4j.RollingFileAppender
30log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
31log4j.appender.stdout.layout.ConversionPattern=%d %5p [%t] %m %C:%L%n
32
33log4j.appender.network=org.apache.log4j.RollingFileAppender
34log4j.appender.network.File=logs/network.log
35log4j.appender.network.layout=org.apache.log4j.PatternLayout
36log4j.appender.network.layout.ConversionPattern=[%d|%t]%m%n%n
37log4j.appender.network.MaxFileSize=50MB
38log4j.appender.network.MaxBackupIndex=4
39
40log4j.logger.debugLogger=INFO,debug
41log4j.additivity.debugLogger=false
42log4j.appender.debug=org.apache.log4j.RollingFileAppender
43log4j.appender.debug.File=logs/debug.log
44log4j.appender.debug.layout=org.apache.log4j.PatternLayout
45log4j.appender.debug.layout.ConversionPattern=[%d|%t]%m%n%n
46log4j.appender.debug.MaxFileSize=50MB
47log4j.appender.debug.MaxBackupIndex=4
48