diff options
Diffstat (limited to 'MyProxy.pl')
-rwxr-xr-x | MyProxy.pl | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -166,6 +166,9 @@ sub doFilter { for (@PATTERNS) { my ($pat,$sub,@rest)=@$_; if ($uri=~/$pat/) { + if ($doFilterLogger->is_debug()) { + $doFilterLogger->debug("$uri matched $pat"); + } $self->proxy->stash('url_matches',[$1,$2,$3,$4,$5,$6,$7,$8,$9]); $self->proxy->stash('pre_match',substr($uri,0,$-[0])); $self->proxy->stash('full_match',substr($uri,$-[0],$+[0]-$-[0])); |