From 5548ec066fbf6544c3226003f0878f5b30f4615a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 2 Oct 2009 10:51:21 +0000 Subject: (_compute_flags_for_skiplist) do not display skiped packages on console by default with rpmdrake --- NEWS | 1 + urpm/media.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 60d98467..146ca3e0 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,4 @@ +- downgrade skipped package log message to debug message - make sure we don't check certificate in aria2 except when we want to - exclude kernel-source from orphan processing (#53426) - do not list as orphans kernel packages which where not installed through diff --git a/urpm/media.pm b/urpm/media.pm index b77ac2c5..18959f7d 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -724,7 +724,7 @@ sub _compute_flags_for_skiplist { my ($urpm, $pkg) = @_; $pkg->is_arch_compat && ! exists $uniq{$pkg->fullname} or return; $uniq{$pkg->fullname} = undef; - $urpm->{log}(N("skipping package %s", scalar($pkg->fullname))); + $urpm->{debug} and $urpm->{debug}(N("skipping package %s", scalar($pkg->fullname))); }, ); } -- cgit v1.2.1