bodhi: switch the log level to info in production

Signed-off-by: Clement Verna <cverna@tutanota.com>
This commit is contained in:
Clement Verna
2020-03-31 09:15:31 +02:00
committed by Pierre-Yves Chibon
parent b9b91103f3
commit d515d54de3

View File

@@ -12,7 +12,7 @@ handlers:
console:
class: logging.StreamHandler
{% if env == "production" %}
level: DEBUG
level: INFO
{% else %}
level: DEBUG
{% endif %}
@@ -34,7 +34,7 @@ handlers:
loggers:
bodhi:
{% if env == "production" %}
level: DEBUG
level: INFO
{% else %}
level: DEBUG
{% endif %}