blob: 66299b2f1086112d457cae645206563311e4024a [file] [log] [blame]
Zack Williams41513bf2018-07-07 20:08:35 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Zsolt Haraszti656ecc62016-12-28 15:08:23 -080014logging:
15 version: 1
16
17 formatters:
18 brief:
19 format: '%(message)s'
20 default:
21 format: '%(asctime)s.%(msecs)03d %(levelname)-8s %(module)s.%(funcName)s %(message)s'
22 datefmt: '%Y%m%dT%H%M%S'
23
24 handlers:
25 console:
26 class : logging.StreamHandler
27 level: DEBUG
28 formatter: default
29 stream: ext://sys.stdout
30 null:
31 class: logging.NullHandler
32
33 loggers:
34 amqp:
35 handlers: [null]
36 propagate: False
37 conf:
38 handlers: [null]
39 propagate: False
40 '': # root logger
41 handlers: [console]
42 level: INFO # this can be bumped up/down by -q and -v command line
43 # options
44 propagate: False