class Seahorse::Client::Logging::Formatter

def short

Returns:
  • (Formatter) -

Other tags:
    Example: A sample of the short format -
def short
  pattern = []
  pattern << "[:client_class"
  pattern << ":http_response_status_code"
  pattern << ":time]"
  pattern << ":operation"
  pattern << ":error_class"
  Formatter.new(pattern.join(' ') + "\n")
end