diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-24 19:05:45 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-24 19:05:45 +0100 |
commit | 58896e197237213df9061f5e141530387887f814 (patch) | |
tree | 4b768f8eb8e22a54e8569afb5cf092aed22c72f2 | |
parent | de1fd4aaf27ca216bcbfeeeb197845078311aa13 (diff) | |
download | prosody-58896e197237213df9061f5e141530387887f814.tar.gz prosody-58896e197237213df9061f5e141530387887f814.zip |
net.http.server: Remove debug message
-rw-r--r-- | net/http/server.lua | 1 |
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 |