diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-09-20 13:58:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-09-20 13:58:56 +0000 |
commit | 2f7a95ab05d48b241df21e81a757aebc33eb31fc (patch) | |
tree | 48823696d931abac9396935d08753c3ec443c178 /perl-install/harddrake | |
parent | c75432078b956f8eb282e76cda86ef6f16f5640d (diff) | |
download | drakx-backup-do-not-use-2f7a95ab05d48b241df21e81a757aebc33eb31fc.tar drakx-backup-do-not-use-2f7a95ab05d48b241df21e81a757aebc33eb31fc.tar.gz drakx-backup-do-not-use-2f7a95ab05d48b241df21e81a757aebc33eb31fc.tar.bz2 drakx-backup-do-not-use-2f7a95ab05d48b241df21e81a757aebc33eb31fc.tar.xz drakx-backup-do-not-use-2f7a95ab05d48b241df21e81a757aebc33eb31fc.zip |
don't print logs in console
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/ui.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/ui.pm b/perl-install/harddrake/ui.pm index a8165d3ad..cf965b71c 100644 --- a/perl-install/harddrake/ui.pm +++ b/perl-install/harddrake/ui.pm @@ -177,7 +177,7 @@ sub new { foreach (@harddrake::data::tree) { my ($Ident, $title, $icon, $configurator, $detector) = @$_; next if (ref($detector) ne "CODE"); #skip class witouth detector - print _("Probing %s class\n", $Ident); +# print _("Probing %s class\n", $Ident); next if $Ident =~ /(MODEM|PRINTER)/ && "@ARGV" =~ /test/; my @devices = &$detector; next if (!listlength(@devices)); # Skip empty class (no devices) |