class Aws::Log::Formatter

def method_missing(method_name, *args)

Other tags:
    Api: - private
def method_missing(method_name, *args)
  if method_name.to_s.chars.first == '_'
    ":#{method_name.to_s[1..-1]}"
  else
    super
  end
end