From bd81fda05cb4e5dfbd367f0e56c83179721acb5e Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Thu, 31 Oct 2019 14:13:39 -0400 Subject: [PATCH] get rid of a loud celery error in the dev environment --- awx/settings/development.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/awx/settings/development.py b/awx/settings/development.py index 86b13eb0cb..184e7ab63b 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -52,6 +52,9 @@ COLOR_LOGS = True # Pipe management playbook output to console LOGGING['loggers']['awx.isolated.manager.playbooks']['propagate'] = True # noqa +# celery is annoyingly loud when docker containers start +LOGGING['loggers'].pop('celery', None) # noqa + ALLOWED_HOSTS = ['*'] mimetypes.add_type("image/svg+xml", ".svg", True)