X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FFilter.pm;h=5f6b9bf17af397b23cbe6fd98ae2cc3f438df5fd;hb=101516b420ac77cd9eb8294651104e43f3461c06;hp=a37ea0d2d647cc95a45cdb6cdd969f8f25102e3b;hpb=5c96125fa684151fbae1daa2c76ca5522d0a09c0;p=spider.git diff --git a/perl/Filter.pm b/perl/Filter.pm index a37ea0d2..5f6b9bf1 100644 --- a/perl/Filter.pm +++ b/perl/Filter.pm @@ -89,7 +89,7 @@ sub compile if ($@) { my $sort = $ref->{sort}; my $name = $ref->{name}; - dbg('err', "Error compiling $ar $sort $name: $@"); + dbg("Error compiling $ar $sort $name: $@") if isdbg('err'); Log('err', "Error compiling $ar $sort $name: $@"); } $rr = $@; @@ -107,7 +107,7 @@ sub read_in $in = undef; my $s = readfilestr($fn); my $newin = eval $s; - dbg('conn', "$@") if $@; + dbg($@) if $@; if ($in) { $newin = new('Filter::Old', $sort, $call, $flag); $newin->{filter} = $in; @@ -223,7 +223,7 @@ sub it my $true = $r ? "OK" : "REJ"; my $sort = $self->{sort}; $hops ||= "none"; - dbg('filter', "Filter: $type/$sort with $asc on '$args': $true hops: $hops"); + dbg("Filter: $type/$sort with $asc on '$args': $true hops: $hops") if isdbg('filter'); } return ($r, $hops); }