Put awx analytics logs also in the task system logger

Errors/warnings when gathering analytics are about 50/50 split between
the gathering code in analytics and the task code that calls it, so
they should be in the same place for debugging sanity.
This commit is contained in:
Bill Nottingham 2020-07-31 12:20:02 -04:00
parent c753324872
commit d4ba62695f

View File

@ -1001,7 +1001,7 @@ LOGGING = {
'level': 'INFO', # very verbose debug-level logs
},
'awx.analytics': {
'handlers': ['external_logger'],
'handlers': ['task_system', 'external_logger'],
'level': 'INFO',
'propagate': False
},