bodhi: Raise staging log levels.

Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
This commit is contained in:
Randy Barlow 2019-05-14 19:21:21 +00:00
parent 983664a4c1
commit 2f3a00687d

View file

@ -33,11 +33,19 @@ handlers:
subject: "Bodhi error" subject: "Bodhi error"
loggers: loggers:
bodhi: bodhi:
{% if env == "production" %}
level: INFO level: INFO
{% else %}
level: DEBUG
{% endif %}
handlers: [console, smtp] handlers: [console, smtp]
propagate: 0 propagate: 0
root: root:
level: INFO {% if env == "production" %}
level: ERROR
{% else %}
level: DEBUG
{% endif %}
handlers: [console, smtp] handlers: [console, smtp]
twisted: twisted:
{% if env == "production" %} {% if env == "production" %}
@ -46,6 +54,3 @@ loggers:
level: DEBUG level: DEBUG
{% endif %} {% endif %}
handlers: [console, smtp] handlers: [console, smtp]
root:
level: NOTSET
handlers: []