aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-29 22:04:57 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-29 22:04:57 +0100
commit0d7aa536d5b382f9d2eb3a2f725ebd038ec97284 (patch)
tree20e352873db9d5bc943070160be75749999c7eba /net
parent887dc6887baa16d13ff5d06af44c74c2439ee3b6 (diff)
downloadprosody-0d7aa536d5b382f9d2eb3a2f725ebd038ec97284.tar.gz
prosody-0d7aa536d5b382f9d2eb3a2f725ebd038ec97284.zip
httpclient_listener: Don't use print()...
Diffstat (limited to 'net')
-rw-r--r--net/httpclient_listener.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/httpclient_listener.lua b/net/httpclient_listener.lua
index 9c4f23f3..a648743f 100644
--- a/net/httpclient_listener.lua
+++ b/net/httpclient_listener.lua
@@ -1,7 +1,7 @@
+local log = require "util.logger".init("httpclient_listener");
local connlisteners_register = require "net.connlisteners".register;
-
local requests = {}; -- Open requests
local buffers = {}; -- Buffers of partial lines
@@ -11,7 +11,7 @@ function httpclient.listener(conn, data)
local request = requests[conn];
if not request then
- print("NO REQUEST!! for "..tostring(conn));
+ log("warn", "Received response from connection %s with no request attached!", tostring(conn));
return;
end
@@ -29,7 +29,7 @@ function httpclient.disconnect(conn, err)
end
function httpclient.register_request(conn, req)
- print("Registering a request for "..tostring(conn));
+ log("debug", "Attaching request %s to connection %s", tostring(req.id or req), tostring(conn));
requests[conn] = req;
end