diff --git a/pungi/phases/pkgset/sources/source_koji.py b/pungi/phases/pkgset/sources/source_koji.py index 4dbcf1f2..98eed625 100644 --- a/pungi/phases/pkgset/sources/source_koji.py +++ b/pungi/phases/pkgset/sources/source_koji.py @@ -252,6 +252,11 @@ def populate_global_pkgset(compose, koji_wrapper, path_prefix, event_id): variant_tags[variant].append(tag) if tag not in compose_tags: compose_tags.append(tag) + + module_msg = "Module {module} in variant {variant} will use Koji tag {tag}.".format( + variant=variant, tag=tag, module=module["name"]) + compose.log_info("%s" % module_msg) + if pdc_modules: with open(pdc_module_file, 'w') as f: json.dump(pdc_modules, f)