format(pairs)
Formats the key value pairs into a string.
# File activerecord/lib/active_record/query_logs_formatter.rb, line 11 def format(pairs) pairs.map! do |key, value| "#{key}#{key_value_separator}#{format_value(value)}" end.join(",") end