# File lib/mongrel/debug.rb, line 65
65:   def ObjectTracker.configure
66:     @active_objects = Set.new
67: 
68:     ObjectSpace.each_object do |obj|
69:       begin
70:         # believe it or not, some idiots actually alter the object_id method
71:         @active_objects << obj.object_id
72:       rescue Object
73:         # skip this one, he's an idiot
74:       end
75:     end
76:   end