aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
Diffstat (limited to 'net/http')
-rw-r--r--net/http/server.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 94487e5e..50a5c5a1 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -26,7 +26,6 @@ local function is_wildcard_event(event)
return event:sub(-2, -1) == "/*";
end
local function is_wildcard_match(wildcard_event, event)
- log("debug", "comparing %q with %q", wildcard_event:sub(1, -2), event:sub(1, #wildcard_event-1));
return wildcard_event:sub(1, -2) == event:sub(1, #wildcard_event-1);
end