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:
parent
47e30b054b
commit
dcbe830ef3
2 changed files with 0 additions and 2 deletions
|
@ -200,7 +200,6 @@ LOGGING = {
|
|||
},
|
||||
'handlers': {
|
||||
'console': {
|
||||
'level': 'INFO',
|
||||
'formatter': 'standard',
|
||||
'class': 'logging.StreamHandler',
|
||||
'stream': 'ext://sys.stdout',
|
||||
|
|
|
@ -242,7 +242,6 @@ LOGGING = {
|
|||
},
|
||||
'handlers': {
|
||||
'console': {
|
||||
'level': 'INFO',
|
||||
'formatter': 'standard',
|
||||
'class': 'logging.StreamHandler',
|
||||
'stream': 'ext://sys.stdout',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue