blob: e26a4858196f96a27d1fc66726b63527ad27a3c2 [file] [log] [blame]
alex_sh9d980ce2017-08-23 17:30:56 -04001# ================================================================================
Schmalzried, Terry (ts862m)05f475f2019-11-13 16:47:45 -05002# Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
alex_sh9d980ce2017-08-23 17:30:56 -04003# ================================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# ============LICENSE_END=========================================================
16#
17# ECOMP is a trademark and service mark of AT&T Intellectual Property.
18
19
20# You may change this file while your program is running and CommonLogger will automatically reconfigure accordingly.
21# Changing these parameters may leave old log files lying around.
22
23
24#--- Parameters that apply to all logs
25#
26# rotateMethod: time, size, stdout, stderr, none
27#... Note: the following two parameters apply only when rotateMethod=time
28# timeRotateIntervalType: S, M, H, D, W0 - W6, or midnight (seconds, minutes, hours, days, weekday (0=Monday), or midnight UTC)
29# timeRotateInterval: >= 1 (1 means every timeRotateIntervalType, 2 every other, 3 every third, etc.)
30#... Note: the following parameter applies only when rotateMethod=size
31# sizeMaxBytes: >= 0 (0 means no limit, else maximum filesize in Bytes)
32# backupCount: >= 0 (Number of rotated backup files to retain. If rotateMethod=time, 0 retains *all* backups. If rotateMethod=size, 0 retains *no* backups.)
33#
Schmalzried, Terry (ts862m)05f475f2019-11-13 16:47:45 -050034rotateMethod = size
alex_sh9d980ce2017-08-23 17:30:56 -040035timeRotateIntervalType = midnight
36timeRotateInterval = 1
Schmalzried, Terry (ts862m)05f475f2019-11-13 16:47:45 -050037sizeMaxBytes = 10000000
38backupCount = 4
alex_sh9d980ce2017-08-23 17:30:56 -040039
40
41#--- Parameters that define log filenames and their initial LogLevel threshold
42#... Note: CommonLogger will exit if your process does not have permission to write to the file.
43#
44
45error = logs/error.log
46errorLogLevel = WARN
47errorStyle = error
48
49metrics = logs/metrics.log
50metricsLogLevel = INFO
51metricsStyle = metrics
52
53audit = logs/audit.log
54auditLogLevel = INFO
55auditStyle = audit
56
57debug = logs/debug.log
58debugLogLevel = DEBUG
59debugStyle = debug