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"
loggers:
bodhi:
{% if env == "production" %}
level: INFO
{% else %}
level: DEBUG
{% endif %}
handlers: [console, smtp]
propagate: 0
root:
level: INFO
{% if env == "production" %}
level: ERROR
{% else %}
level: DEBUG
{% endif %}
handlers: [console, smtp]
twisted:
{% if env == "production" %}
@ -46,6 +54,3 @@ loggers:
level: DEBUG
{% endif %}
handlers: [console, smtp]
root:
level: NOTSET
handlers: []