blob: eb2c55dfa333fa56e158b1322d458cc4caa9477f [file] [log] [blame]
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -07001logging:
2 version: 1
3
4 formatters:
5 brief:
6 format: '%(message)s'
7 default:
8 format: '%(asctime)s.%(msecs)03d %(levelname)-8s %(module)s.%(funcName)s %(message)s'
9 datefmt: '%Y%m%dT%H%M%S'
10 fluent_fmt:
11 '()': fluent.handler.FluentRecordFormatter
12 format:
13 level: '%(levelname)s'
14 hostname: '%(hostname)s'
15 where: '%(module)s.%(funcName)s'
16
17 handlers:
18 console:
19 class : logging.StreamHandler
20 level: DEBUG
21 formatter: default
22 stream: ext://sys.stdout
23 fluent:
24 class: fluent.handler.FluentHandler
25 host: localhost
26 port: 24224
27 tag: voltha.logging
28 formatter: fluent_fmt
29 level: DEBUG
khenaidoo56f45922017-04-05 14:23:31 -050030 localRotatingFile:
31 class: logging.handlers.RotatingFileHandler
32 filename: chameleon.log
33 formatter: default
34 maxBytes: 2097152
35 backupCount: 10
36 level: DEBUG
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070037 null:
38 class: logging.NullHandler
39
40 loggers:
41 amqp:
42 handlers: [null]
43 propagate: False
44 conf:
45 handlers: [null]
46 propagate: False
47 '': # root logger
khenaidoo56f45922017-04-05 14:23:31 -050048 handlers: [console, fluent, localRotatingFile]
Zsolt Harasztid7ae9d52016-09-27 09:56:49 -070049 level: INFO # this can be bumped up/down by -q and -v command line
50 # options
51 propagate: False