Merge pull request #8189 from kdelee/analytics_logging

Need log level info to show up with new settings

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot]
2020-09-21 17:52:15 +00:00
committed by GitHub

View File

@@ -53,7 +53,7 @@ class Command(BaseCommand):
tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until) tgzfiles = gather(collection_type='manual' if not opt_dry_run else 'dry-run', since = since, until = until)
if tgzfiles: if tgzfiles:
for tgz in tgzfiles: for tgz in tgzfiles:
self.logger.debug(tgz) self.logger.info(tgz)
else: else:
self.logger.error('No analytics collected') self.logger.error('No analytics collected')
if opt_ship: if opt_ship: