You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2004/04/29 18:25:07 UTC

svn commit: rev 10425 - incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin

Author: felicity
Date: Thu Apr 29 09:25:06 2004
New Revision: 10425

Modified:
   incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm
Log:
bug 3329: modify debug output to be clearer that there are multiple queries per domain -- we're not querying the same thing multiple times

Modified: incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm
==============================================================================
--- incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm	(original)
+++ incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm	Thu Apr 29 09:25:06 2004
@@ -478,8 +478,8 @@
     elsif ($type eq 'DNSBL') {
       $self->complete_dnsbl_lookup ($scanstate, $ent, $val);
       my $totalsecs = (time - $ent->{obj}->{querystart});
-      dbg ("URIDNSBL: ".$ent->{obj}->{dom}." took ".
-		$totalsecs." seconds to look up");
+      dbg ("URIDNSBL: query for ".$ent->{obj}->{dom}." took ".
+		$totalsecs." seconds to look up ($val)");
     }
 
     $scanstate->{queries_completed}++;