mod_log_http: Remove accidentally-committed debugging code
authorMatthew Wild <mwild1@gmail.com>
Tue, 25 Apr 2017 12:02:36 +0100
changeset 2709 3f44abfe7264
parent 2708 5ab27d3741b4
child 2711 dea35dfd5808
mod_log_http: Remove accidentally-committed debugging code
mod_log_http/mod_log_http.lua
--- a/mod_log_http/mod_log_http.lua	Mon Apr 24 18:12:29 2017 +0200
+++ b/mod_log_http/mod_log_http.lua	Tue Apr 25 12:02:36 2017 +0100
@@ -69,7 +69,6 @@
 
 module:hook_object_event(http.events, "response", function (event)
 	module:log("warn", "Received response %d from %s!", event.code, event.url);
-	for k,v in pairs(event.response) do print("=====", k, v) end
 	append_response(event.request.id, event.response);
 end);