reduce default verbosity of devel-specific callback logging

This commit is contained in:
AlanCoding
2018-09-18 15:28:57 -04:00
parent e1d44d6d14
commit 482395eb6a
4 changed files with 21 additions and 9 deletions

View File

@@ -1142,6 +1142,7 @@ LOGGING = {
},
'awx.main.commands.run_callback_receiver': {
'handlers': ['callback_receiver'],
'level': 'INFO' # in debug mode, includes full callback data
},
'awx.main.dispatch': {
'handlers': ['dispatcher'],

View File

@@ -196,6 +196,7 @@ LOGGING['handlers']['syslog'] = {
LOGGING['loggers']['django.request']['handlers'] = ['console']
LOGGING['loggers']['rest_framework.request']['handlers'] = ['console']
LOGGING['loggers']['awx']['handlers'] = ['console', 'external_logger']
LOGGING['loggers']['awx.main.commands.run_callback_receiver']['handlers'] = [] # propogates to awx
LOGGING['loggers']['awx.main.tasks']['handlers'] = ['console', 'external_logger']
LOGGING['loggers']['awx.main.scheduler']['handlers'] = ['console', 'external_logger']
LOGGING['loggers']['django_auth_ldap']['handlers'] = ['console']