class FlogCLI

def output_details io, max = nil

def output_details io, max = nil
  io.puts
  each_by_score max do |class_method, score, call_list|
    self.print_score io, class_method, score
    if option[:details] then
      call_list.sort_by { |k,v| -v }.each do |call, count|
        io.puts "  %6.1f:   %s" % [count, call]
      end
      io.puts
    end
  end
end