# File lib/mongrel/debug.rb, line 84
84:   def log_open_files
85:     open_counts = {}
86:     $open_files.each do |f,args|
87:       open_counts[args] ||= 0
88:       open_counts[args] += 1
89:     end
90:     MongrelDbg::trace(:files, open_counts.to_yaml)
91:   end