diff options
author | Daniel Silverstone <dsilvers@digital-scurf.org> | 2012-08-16 11:29:13 +0100 |
---|---|---|
committer | Daniel Silverstone <dsilvers@digital-scurf.org> | 2012-08-16 11:29:13 +0100 |
commit | bf5c531aea19e20d1b328b89467d6f37750380e1 (patch) | |
tree | fba54057a3e37e7c37ff6790c776f1e8f6279be3 | |
parent | 6ce3986346663eb817b62809de9f3fe37c688f5d (diff) | |
download | gitano-bf5c531aea19e20d1b328b89467d6f37750380e1.tar.gz |
ACTIONS: Remove unnecessary debug since we show the request
-rw-r--r-- | lib/gitano/actions.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/gitano/actions.lua b/lib/gitano/actions.lua index 82c47ef..587014a 100644 --- a/lib/gitano/actions.lua +++ b/lib/gitano/actions.lua @@ -52,7 +52,6 @@ local function http_txn(method, host, path, headers, body) "Connection: Close", } for k, v in pairs(headers) do - log.ddebug("Adding header", k, v) req_lines[#req_lines+1] = ("%s: %s"):format(k,v) end req_lines[#req_lines+1] = "" |