From 64ebfa75a8c48731401a67b4416c0549d83b41a4 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Wed, 10 Jun 2020 11:50:13 -0400 Subject: [PATCH] remove a highly verbose log lines --- awx/main/models/mixins.py | 1 - awx/main/tasks.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/awx/main/models/mixins.py b/awx/main/models/mixins.py index e51807f47b..ce6d3717a7 100644 --- a/awx/main/models/mixins.py +++ b/awx/main/models/mixins.py @@ -566,7 +566,6 @@ class WebhookMixin(models.Model): def update_webhook_status(self, status): if not self.webhook_credential: - logger.debug("No credential configured to post back webhook status, skipping.") return status_api = self.extra_vars_dict.get('tower_webhook_status_api') diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 360076e7d8..ef2de1a500 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -1013,8 +1013,6 @@ class BaseTask(object): 'resource_profiling_memory_poll_interval': mem_poll_interval, 'resource_profiling_pid_poll_interval': pid_poll_interval, 'resource_profiling_results_dir': results_dir}) - else: - logger.debug('Resource profiling not enabled for task') return resource_profiling_params