Clean up logging excluded packages

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2017-01-19 14:44:24 +01:00
parent e06e9165fc
commit 7343daba24
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ class Gather(GatherBase):
pkgs = self.q_binary_packages.filter(name__glob=pattern)
exclude.update(pkgs)
self.logger.debug("EXCLUDED: %s" % list(pkgs))
self.logger.debug("EXCLUDED by %s: %s", pattern, [str(p) for p in pkgs])
self.dnf._sack.add_excludes(pkgs)
with Profiler("Gather.add_initial_packages():exclude-queries"):