# File lib/mongrel/debug.rb, line 65
  def ObjectTracker.configure
    @active_objects = Set.new

    ObjectSpace.each_object do |obj|
      begin
        # believe it or not, some idiots actually alter the object_id method
        @active_objects << obj.object_id
      rescue Object
        # skip this one, he's an idiot
      end
    end
  end