mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user