From: Michael Tremer Date: Mon, 28 Nov 2022 17:03:41 +0000 (+0000) Subject: packages: Log which packages are being installed X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d1264342f21404bd16e46f418131993fe4b773c;p=people%2Fms%2Fbricklayer.git packages: Log which packages are being installed Signed-off-by: Michael Tremer --- 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")