about summary refs log tree commit homepage
diff options
context:
space:
mode:
-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