Skip to content

Commit

Permalink
http: remove a few debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Phillips committed Jun 22, 2012
1 parent fe61ead commit dc82393
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/luvit/http.lua
Expand Up @@ -243,7 +243,6 @@ end
function OutgoingMessage:_writeRaw(data, encoding)
p('_writeRaw')
if #data == 0 then
return true
end
Expand Down Expand Up @@ -450,7 +449,6 @@ function OutgoingMessage:addTrailers(headers)
end
function OutgoingMessage:done(data, encoding)
p('OutgoingMessage:done')
if self.finished then
return
end
Expand Down Expand Up @@ -709,7 +707,6 @@ function ClientRequest:onSocket(socket)
self.socket:destroy()
end)
socket:on('data', function(chunk)
p(chunk)
-- Ignore empty chunks
if #chunk == 0 then return end
Expand Down

0 comments on commit dc82393

Please sign in to comment.