diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-05-30 13:49:38 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-05-30 13:49:38 +0100 |
commit | 9ce3ead7b7e27b36e67b2694530c052b645bfd59 (patch) | |
tree | c36d1229f21c6d1a7b5699bcaa4000ec35902de9 /net | |
parent | b4359c6b35505c62116b1815a4ef57a042d65900 (diff) | |
parent | 175256488b9b8d4f39668e515213b9fe7af261b6 (diff) | |
download | prosody-9ce3ead7b7e27b36e67b2694530c052b645bfd59.tar.gz prosody-9ce3ead7b7e27b36e67b2694530c052b645bfd59.zip |
Automated merge with http://waqas.ath.cx:8000/
Diffstat (limited to 'net')
-rw-r--r-- | net/httpclient_listener.lua | 6 |
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 |