net.http.server: Comment out a log message
authorKim Alvefur <zash@zash.se>
Wed, 27 Aug 2014 08:44:45 +0000 (10:44 +0200)
committerKim Alvefur <zash@zash.se>
Wed, 27 Aug 2014 08:44:45 +0000 (10:44 +0200)
net/http/server.lua

index 0f379e96c625e726f554184e8735decb879a7d6b..771adf10cfdf441e642eeb93d384514315bf15a3 100644 (file)
@@ -98,7 +98,7 @@ function listener.onconnect(conn)
        local pending = {};
        local waiting = false;
        local function process_next()
-               if waiting then log("debug", "can't process_next, waiting"); return; end
+               if waiting then return; end -- log("debug", "can't process_next, waiting");
                waiting = true;
                while sessions[conn] and #pending > 0 do
                        local request = t_remove(pending);