summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-10-02 10:51:21 +0000
committerThierry Vignaud <tv@mandriva.org>2009-10-02 10:51:21 +0000
commit5548ec066fbf6544c3226003f0878f5b30f4615a (patch)
treec5eaa1f86916e6b2890d5332e056a4a38c6519fd
parent9cdc7f8fa96c18516883d7b801c38137421929a8 (diff)
downloadurpmi-5548ec066fbf6544c3226003f0878f5b30f4615a.tar
urpmi-5548ec066fbf6544c3226003f0878f5b30f4615a.tar.gz
urpmi-5548ec066fbf6544c3226003f0878f5b30f4615a.tar.bz2
urpmi-5548ec066fbf6544c3226003f0878f5b30f4615a.tar.xz
urpmi-5548ec066fbf6544c3226003f0878f5b30f4615a.zip
(_compute_flags_for_skiplist) do not display skiped packages on console by default with rpmdrake
-rw-r--r--NEWS1
-rw-r--r--urpm/media.pm2
2 files changed, 2 insertions, 1 deletions
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)));
},
);
}