mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-23 16:31:32 +00:00
Log new cruft items added to the list of items
Signed-off-by: Ivo De Decker <ivodd@debian.org>
This commit is contained in:
parent
747c67854a
commit
c7cfb4e09f
@ -861,6 +861,10 @@ class Britney(object):
|
|||||||
output_logger.info(" ori: %s", self.eval_nuninst(nuninst_orig))
|
output_logger.info(" ori: %s", self.eval_nuninst(nuninst_orig))
|
||||||
output_logger.info(" pre: %s", self.eval_nuninst(nuninst_last_accepted))
|
output_logger.info(" pre: %s", self.eval_nuninst(nuninst_last_accepted))
|
||||||
output_logger.info(" now: %s", self.eval_nuninst(nuninst_after))
|
output_logger.info(" now: %s", self.eval_nuninst(nuninst_after))
|
||||||
|
if new_cruft:
|
||||||
|
output_logger.info(" added new cruft items to list: %s",
|
||||||
|
" ".join(x.uvname for x in new_cruft))
|
||||||
|
|
||||||
if len(selected) <= 20:
|
if len(selected) <= 20:
|
||||||
output_logger.info(" all: %s", " ".join(x.uvname for x in selected))
|
output_logger.info(" all: %s", " ".join(x.uvname for x in selected))
|
||||||
else:
|
else:
|
||||||
@ -993,7 +997,10 @@ class Britney(object):
|
|||||||
else:
|
else:
|
||||||
# On non-recursive hints check for cruft and purge it proactively in case it "fixes" the hint.
|
# On non-recursive hints check for cruft and purge it proactively in case it "fixes" the hint.
|
||||||
cruft = [x for x in upgrade_me if x.is_cruft_removal]
|
cruft = [x for x in upgrade_me if x.is_cruft_removal]
|
||||||
cruft.extend(new_cruft)
|
if new_cruft:
|
||||||
|
output_logger.info("Change added new cruft items to list: %s",
|
||||||
|
" ".join(x.uvname for x in new_cruft))
|
||||||
|
cruft.extend(new_cruft)
|
||||||
if cruft:
|
if cruft:
|
||||||
output_logger.info("Checking if changes enables cruft removal")
|
output_logger.info("Checking if changes enables cruft removal")
|
||||||
(nuninst_end, remaining_cruft) = self.iter_packages(cruft,
|
(nuninst_end, remaining_cruft) = self.iter_packages(cruft,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user