Method: Aws::Log::Formatter.short
- Defined in:
- lib/aws-sdk-core/log/formatter.rb
.short(options = {}) ⇒ Formatter
The short log format. Similar to default, but it does not inspect the request params or report on retries.
232 233 234 235 236 237 238 239 240 |
# File 'lib/aws-sdk-core/log/formatter.rb', line 232 def short( = {}) pattern = [] pattern << "[:client_class" pattern << ":http_response_status_code" pattern << ":time]" pattern << ":operation" pattern << ":error_class" Formatter.new(pattern.join(' ') + "\n", ) end |