class BlueprintAgreement::Utils::RequestLogger

Public Instance Methods

for(body:, headers:, path:, request_method:) click to toggle source
# File lib/blueprint_agreement/utils/request_logger.rb, line 8
def for(body:, headers:, path:, request_method:)
  @body = body
  @path = path
  @request_method = request_method
  @headers = headers
end
print() click to toggle source