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 2006/10/19 12:18:29 UTC

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

Author: jm
Date: Thu Oct 19 03:18:21 2006
New Revision: 465550

URL: http://svn.apache.org/viewvc?view=rev&rev=465550
Log:
this seems to be taking insane amounts of time.  log timestamps to figure out how much, exactly

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/viewvc/spamassassin/trunk/masses/rule-qa/automc/gen_info_xml?view=diff&rev=465550&r1=465549&r2=465550
==============================================================================
--- spamassassin/trunk/masses/rule-qa/automc/gen_info_xml (original)
+++ spamassassin/trunk/masses/rule-qa/automc/gen_info_xml Thu Oct 19 03:18:21 2006
@@ -158,7 +158,7 @@
 }
 
 sub get_svn_log {
-  print "getting svn log...\n";
+  print "getting svn log... (".time.")\n";
   if (open (IN, "svn log --xml $svn_checkins_root |")) {
     eval {
       my $xml = join('', <IN>);
@@ -172,7 +172,7 @@
   if (!$svn_log) {
     die "no svn log --xml";
   }
-  print "got ".(scalar @{$svn_log->{logentry}})." log entries\n";
+  print "got ".(scalar @{$svn_log->{logentry}})." log entries (".time.")\n";
 
   # use Data::Dumper; print Dumper($svn_log); die;
 }