From 044d6bf97c8d740db53fc4e17ca0b21918510781 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Wed, 7 Jun 2023 16:50:56 -0400 Subject: [PATCH] Fix task_system logs twice (#14096) --- awx/settings/development.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/awx/settings/development.py b/awx/settings/development.py index b402687d13..6afd98a63c 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -29,8 +29,6 @@ SHELL_PLUS_PRINT_SQL = False # show colored logs in the dev environment # to disable this, set `COLOR_LOGS = False` in awx/settings/local_settings.py LOGGING['handlers']['console']['()'] = 'awx.main.utils.handlers.ColorHandler' # noqa -# task system does not propagate to AWX, so color log these too -LOGGING['handlers']['task_system'] = LOGGING['handlers']['console'].copy() # noqa COLOR_LOGS = True ALLOWED_HOSTS = ['*']