Class: Ingenico::Connect::SDK::Logging::ResponseLogMessageBuilder

Inherits:
LogMessageBuilder
  • Object
show all
Defined in:
lib/ingenico/connect/sdk/logging/response_log_message_builder.rb

Instance Attribute Summary

Attributes inherited from LogMessageBuilder

#body, #content_type, #headers, #request_id

Instance Method Summary collapse

Methods inherited from LogMessageBuilder

#add_headers, #is_binary, #set_body, #to_s

Constructor Details

#initialize(request_id, status_code, duration = -1)) ⇒ ResponseLogMessageBuilder

Class that converts data about a response into a properly formatted log message. Formats request id, status code, headers, body and time between request and response into a helpful message.

Parameters:

  • request_id (String)

    identifier of the request corresponding to this response.

  • status_code (Integer)

    HTTP status code of the response.

  • duration (Float) (defaults to: -1))

    time elapsed between request and response.



12
13
14
15
16
# File 'lib/ingenico/connect/sdk/logging/response_log_message_builder.rb', line 12

def initialize(request_id, status_code, duration=-1)
  super(request_id)
  @status_code = status_code
  @duration = duration
end

Instance Method Details

#get_messageObject

Constructs and returns a log message based on the request data. The log message is a string.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/ingenico/connect/sdk/logging/response_log_message_builder.rb', line 19

def get_message
  msg_template = "Incoming response (requestId='%s'" +
      ((@duration < 0) ? "" : ", %.3f ms") +
      "):\n" +
      "  status-code:  '%s'\n" +
      "  headers:      '%s'\n" +
      "  content-type: '%s'\n" +
      "  body:         '%s'"

  return sprintf(msg_template, @request_id, @status_code, @headers,
                 empty_if_null(@content_type), empty_if_null(@body)) if @duration < 0
  sprintf(msg_template, @request_id, @duration, @status_code, @headers,
          empty_if_null(@content_type), empty_if_null(@body))
end