You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/11/10 03:48:04 UTC

svn commit: r332211 - /spamassassin/trunk/masses/rule-qa/automc/gen_info_xml

Author: jm
Date: Wed Nov  9 18:48:04 2005
New Revision: 332211

URL: http://svn.apache.org/viewcvs?rev=332211&view=rev
Log:
gen_info_xml does not need to be as noisy in the logs as it is

Modified:
    spamassassin/trunk/masses/rule-qa/automc/gen_info_xml

Modified: spamassassin/trunk/masses/rule-qa/automc/gen_info_xml
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/automc/gen_info_xml?rev=332211&r1=332210&r2=332211&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/automc/gen_info_xml (original)
+++ spamassassin/trunk/masses/rule-qa/automc/gen_info_xml Wed Nov  9 18:48:04 2005
@@ -32,7 +32,7 @@
   my $drdir = get_datadir_for_daterev($dr);
 
   # this one is always rebuilt.
-  print "$drdir/fastinfo.xml: creating...\n";
+  # print "$drdir/fastinfo.xml: creating...\n";
   my $fastinfo = get_fastinfo($dr, $drdir);
   open (OUT, ">$drdir/fastinfo.xml") or die "cannot write $drdir/fastinfo.xml";
   print OUT $fastinfo;
@@ -42,7 +42,7 @@
   # this one is only built if it doesn't already exist, because
   # it's quite expensive to build
   if (!$full_rebuild && -f "$drdir/info.xml" && -s _) {
-    print "$drdir/info.xml: good\n";
+    # print "$drdir/info.xml: good\n";
     next;
   }