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 | 37f43d0189e9702406bfaf97e8b616f1dd783648 (patch) | |
tree | 4b768f8eb8e22a54e8569afb5cf092aed22c72f2 /net/http | |
parent | cb0212542b4c63567d420538eb72c1f8b9623076 (diff) | |
download | prosody-37f43d0189e9702406bfaf97e8b616f1dd783648.tar.gz prosody-37f43d0189e9702406bfaf97e8b616f1dd783648.zip |
net.http.server: Remove debug message
Diffstat (limited to 'net/http')
-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 |