summaryrefslogtreecommitdiff
path: root/MyProxy.pl
diff options
context:
space:
mode:
Diffstat (limited to 'MyProxy.pl')
-rwxr-xr-xMyProxy.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/MyProxy.pl b/MyProxy.pl
index 1251057..f7af9fb 100755
--- a/MyProxy.pl
+++ b/MyProxy.pl
@@ -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]));