ruby logging httprequest httparty

ruby - httparty: ¿cómo registrar la solicitud?



logging httprequest (2)

¿Cómo registro las solicitudes que se envían con httparty?

HTTParty.post( @application_url, :headers => { "Accept" => "application/json", "Content-Type" => "application/json; charset=utf-8" }, :body => { "ApplicationProfileId" => application.applicationProfileId }.to_json )


Use debug_output en el nivel de clase:

class Foo include HTTParty debug_output $stdout end

o por solicitud

response = HTTParty.post(url, :body => body, :debug_output => $stdout)


Utilice el método debug_output nivel de debug_output para establecer una secuencia de salida donde se envía la información de depuración.