# File lib/innodb/stats.rb, line 32
  def self.print_report(io=STDOUT)
    io.puts "%-50s%10s" % [
      "Statistic",
      "Count",
    ]
    @@data.sort.each do |name, count|
      io.puts "%-50s%10i" % [
        name,
        count
      ]
    end

    nil
  end