Print the full NEVRA when installing packages.

(cherry picked from commit 92e60d7dd1)
This commit is contained in:
Brian C. Lane 2017-01-30 09:20:20 -08:00
parent 6d5161c7f1
commit f8c9e8c120
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class LoraxRpmCallback(dnf.callback.TransactionProgress):
return
self._last_ts = ts_done
msg = '(%d/%d) %s.%s' % (ts_done, ts_total, package.name, package.arch)
msg = '(%d/%d) %s' % (ts_done, ts_total, package)
logger.info(msg)
elif action == self.TRANS_POST:
msg = "Performing post-installation setup tasks"