Remove warns for debugging in the handler.

This commit is contained in:
Colin Kuskie 2008-01-31 00:01:46 +00:00
parent 01d2a207b0
commit 8ce611b368

View file

@ -65,9 +65,7 @@ sub handler {
my $error = "";
my $matchUri = $request->uri;
my $gateway = $config->get("gateway");
warn $matchUri;
$matchUri =~ s{^$gateway(.*)}{/$1};
warn $matchUri;
foreach my $handler (@{$config->get("urlHandlers")}) {
my ($regex) = keys %{$handler};
if ($matchUri =~ m{$regex}i) {