module RaygunClient::HTTP::Post::LogText::Posted

Public Class Methods

call(data, response) click to toggle source
# File lib/raygun_client/http/post.rb, line 131
def self.call(data, response)
  "Status Code: #{response&.code || '(none)'}, Reason Phrase: #{response&.message || '(none)'}, Error Message: #{data.error.message}, Custom Data: #{data.custom_data || '(none)'})"
end