summaryrefslogtreecommitdiffstats
path: root/urpm/media.pm
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 /urpm/media.pm
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
Diffstat (limited to 'urpm/media.pm')
-rw-r--r--urpm/media.pm2
1 files changed, 1 insertions, 1 deletions
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)));
},
);
}