about summary refs log tree commit homepage
path: root/lib/mongrel/cgi.rb
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-08-12 23:14:42 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-08-12 23:14:42 +0000
commit394a29016df78833896c80704ca4a0355ae0aac3 (patch)
tree2433a27714c1f0f1f6bbe354a35ca42b9f31c46c /lib/mongrel/cgi.rb
parentcfe41e916659ccccc81a32d99a1d786a29fe1578 (diff)
downloadunicorn-394a29016df78833896c80704ca4a0355ae0aac3.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@321 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'lib/mongrel/cgi.rb')
-rw-r--r--lib/mongrel/cgi.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/mongrel/cgi.rb b/lib/mongrel/cgi.rb
index b327def..a34c256 100644
--- a/lib/mongrel/cgi.rb
+++ b/lib/mongrel/cgi.rb
@@ -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