From d8a2aa1dc37f1d3e717d9cb952bdf2ae8b096a8b Mon Sep 17 00:00:00 2001 From: Alan Rominger Date: Fri, 27 Feb 2026 14:45:27 -0500 Subject: [PATCH] Do not write to dispatcher.log from AWX application code (#16302) --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index f52e2ea133..1f6b7ae2b2 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -774,7 +774,7 @@ LOGGING = { 'awx.conf.settings': {'handlers': ['null'], 'level': 'WARNING'}, 'awx.main': {'handlers': ['null']}, 'awx.main.commands.run_callback_receiver': {'handlers': ['callback_receiver'], 'level': 'INFO'}, # very noisey debug-level logs - 'awx.main.dispatch': {'handlers': ['dispatcher']}, + 'awx.main.dispatch': {'handlers': ['task_system']}, 'awx.main.consumers': {'handlers': ['console', 'file', 'tower_warnings'], 'level': 'INFO'}, 'awx.main.rsyslog_configurer': {'handlers': ['rsyslog_configurer']}, 'awx.main.cache_clear': {'handlers': ['cache_clear']},