net/http/server.lua
changeset 4682 9d90c70b6358
parent 4668 cce0c739b0d7
child 4683 c1374e083c97
--- a/net/http/server.lua	Tue Apr 24 18:54:34 2012 +0100
+++ b/net/http/server.lua	Tue Apr 24 19:05:45 2012 +0100
@@ -26,7 +26,6 @@
 	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