update link to upper-constraints.txt
[optf/osdf.git] / config / onap_logging_common_v1.config
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2015-2017 AT&T Intellectual Property
3 #
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 #
16 # -------------------------------------------------------------------------
17 #
18
19 # You may change this file while your program is running and CommonLogger will automatically reconfigure accordingly.
20 # Changing these parameters may leave old log files lying around.
21
22
23 #--- Parameters that apply to all logs
24 #
25 # rotateMethod:  time, size, stdout, stderr, none
26 #... Note:  the following two parameters apply only when rotateMethod=time
27 # timeRotateIntervalType:  S, M, H, D, W0 - W6, or midnight  (seconds, minutes, hours, days, weekday (0=Monday), or midnight UTC)
28 # timeRotateInterval:  >= 1  (1 means every timeRotateIntervalType, 2 every other, 3 every third, etc.)
29 #... Note:  the following parameter applies only when rotateMethod=size
30 # sizeMaxBytes:  >= 0  (0 means no limit, else maximum filesize in Bytes)
31 # backupCount:  >= 0  (Number of rotated backup files to retain.  If rotateMethod=time, 0 retains *all* backups.  If rotateMethod=size, 0 retains *no* backups.)
32 #
33 rotateMethod           = time
34 timeRotateIntervalType = midnight
35 timeRotateInterval     = 1
36 sizeMaxBytes           = 0
37 backupCount            = 6
38
39
40 #--- Parameters that define log filenames and their initial LogLevel threshold
41 #... Note:  CommonLogger will exit if your process does not have permission to write to the file.
42 #
43
44 error           = logs/error.log
45 errorLogLevel   = WARN
46 errorStyle      = error
47
48 metrics         = logs/metrics.log
49 metricsLogLevel = INFO
50 metricsStyle    = metrics
51
52 audit           = logs/audit.log
53 auditLogLevel   = INFO
54 auditStyle      = audit
55
56 debug           = logs/debug.log
57 debugLogLevel   = DEBUG
58 debugStyle      = debug