more cosmetic changes
[spider.git] / perl / Filter.pm
index 5f6b9bf17af397b23cbe6fd98ae2cc3f438df5fd..82130b932041f35a8f2039fb0d433bdf7e96f29a 100644 (file)
@@ -89,7 +89,7 @@ sub compile
                if ($@) {
                        my $sort = $ref->{sort};
                        my $name = $ref->{name};
-                       dbg("Error compiling $ar $sort $name: $@") if isdbg('err');
+                       dbg("Error compiling $ar $sort $name: $@");
                        Log('err', "Error compiling $ar $sort $name: $@");
                }
                $rr = $@;
@@ -216,14 +216,16 @@ sub it
        }
 
        # hops are done differently (simply) 
-       my $hops = $self->{hops} if exists $self->{hops};
+       my $hops = "H$self->{hops}" if exists $self->{hops};
 
        if (isdbg('filter')) {
                my $args = join '\',\'', @_;
-               my $true = $r ? "OK" : "REJ";
+               my $true = $r ? "OK " : "REJ";
                my $sort = $self->{sort};
-               $hops ||= "none";
-               dbg("Filter: $type/$sort with $asc on '$args': $true hops: $hops") if isdbg('filter');
+               my $dir = $self->{name} =~ /^in_/i ? "IN " : "OUT";
+               
+               $hops ||= "H?";
+               dbg("$true $dir: $type/$sort with $asc on '$args' $hops") if isdbg('filter');
        }
        return ($r, $hops);
 }