# File lib/mongrel/debug.rb, line 136
136:   def log_open_files
137:     open_counts = {}
138:     $open_files.each do |f,args|
139:       open_counts[args] ||= 0
140:       open_counts[args] += 1
141:     end
142:     MongrelDbg::trace(:files, open_counts.to_yaml)
143:   end