class Seahorse::Client::Logging::Formatter

def method_missing(method_name, *args)

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