Don't specify a logging level on the console handler

This allows each logger to log at whichever level they want and always
show up in the console log (regardless of their level).
Otherwise, we can log 'debug' on pagure, only the level specified
in the handler will show up.

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2018-07-20 10:15:59 +02:00
parent 47e30b054b
commit dcbe830ef3
2 changed files with 0 additions and 2 deletions

View file

@ -200,7 +200,6 @@ LOGGING = {
},
'handlers': {
'console': {
'level': 'INFO',
'formatter': 'standard',
'class': 'logging.StreamHandler',
'stream': 'ext://sys.stdout',

View file

@ -242,7 +242,6 @@ LOGGING = {
},
'handlers': {
'console': {
'level': 'INFO',
'formatter': 'standard',
'class': 'logging.StreamHandler',
'stream': 'ext://sys.stdout',