From 7c7d15a8beec8c241de6f91b197d36a977f330b5 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 21 Sep 2020 11:22:43 -0400 Subject: [PATCH] Need log level info to show up with new settings --- awx/main/management/commands/gather_analytics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/management/commands/gather_analytics.py b/awx/main/management/commands/gather_analytics.py index 82d304c447..b5e8427955 100644 --- a/awx/main/management/commands/gather_analytics.py +++ b/awx/main/management/commands/gather_analytics.py @@ -53,7 +53,7 @@ class Command(BaseCommand): tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until) if tgzfiles: for tgz in tgzfiles: - self.logger.debug(tgz) + self.logger.info(tgz) else: self.logger.error('No analytics collected') if opt_ship: