1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Remove debug output.

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@321 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
zedshaw 2006-08-12 23:14:42 +00:00
parent cfe41e9166
commit 394a29016d

View file

@ -85,7 +85,6 @@ module Mongrel
options.each{|k,v| @head[k] = v}
end
STDERR.puts "HEADER: #{@head.inspect}"
# doing this fakes out the cgi library to think the headers are empty
# we then do the real headers in the out function call later
""
@ -133,7 +132,6 @@ module Mongrel
header(options)
STDERR.puts "RAILS: #{options.inspect}, HEADER: #{@head.inspect}"
@response.start status do |head, body|
send_cookies(head)
@ -156,7 +154,6 @@ module Mongrel
@status = stat || "200"
end
STDERR.puts "STATUS: #{@status} from HEAD: #{@head["Status"]}"
@status
end