From 0d1264342f21404bd16e46f418131993fe4b773c Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 28 Nov 2022 17:03:41 +0000 Subject: [PATCH] packages: Log which packages are being installed Signed-off-by: Michael Tremer --- src/python/step.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/python/step.py b/src/python/step.py index 9af20b3..98c3773 100644 --- a/src/python/step.py +++ b/src/python/step.py @@ -69,6 +69,8 @@ class Step(object): if not packages: return + log.debug("Installing packages: %s" % ", ".join(packages)) + # Set a useful title if none is set if not title: title = _("Installing Packages") -- 2.47.2