From 5dba49a7bcde68002e18bc4354b0d68d373f075f Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Thu, 27 Feb 2020 14:20:36 -0500 Subject: [PATCH] Lower level of log about skipped project update --- awx/main/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index d76810a465..bd92b6a124 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -1809,7 +1809,7 @@ class RunJob(BaseTask): current_revision = git_repo.head.commit.hexsha if desired_revision == current_revision: job_revision = desired_revision - logger.info('Skipping project sync for {} because commit is locally available'.format(job.log_format)) + logger.debug('Skipping project sync for {} because commit is locally available'.format(job.log_format)) else: sync_needs = all_sync_needs except (ValueError, BadGitName):