]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Files.pl
removed some verbosity.
[infobot.git] / src / Files.pl
index 45431839ed9fc19d2b2adddbd71f551c686c3bf1..c8ba101fa816c6b9c3adc8192d54beb26028be59 100644 (file)
@@ -56,7 +56,6 @@ sub loadIgnore {
        &ERROR("FAILED loadIgnore ($file): $!");
        return;
     }
-    &status("Loading ignore list...");
 
     my $count = 0;
     while (<FILE>) {
@@ -65,7 +64,6 @@ sub loadIgnore {
        next unless /\S/;
 
        if (/^(\S+)[\t\s]+(\S+)([\t\s]+.*)?$/) {
-           &status("  $2");
            $ignoreList{$2} = 1;
            $count++;
        }