Httpartyで送信されるリクエストをログに記録するにはどうすればよいですか?
HTTParty.post(
@application_url,
:headers => {
"Accept" => "application/json",
"Content-Type" => "application/json; charset=utf-8"
},
:body => {
"ApplicationProfileId" => application.applicationProfileId
}.to_json
)
使用する - debug_output
クラスレベル:
class Foo
include HTTParty
debug_output $stdout
end
またはリクエストごと
response = HTTParty.post(url, :body => body, :debug_output => $stdout)
クラスレベルを使用 debug_output
デバッグ情報が送信される出力ストリームを設定するメソッド。
組み込みのロガーを使用できます。
my_logger = Rails.logger || Logger.new # use what you like
my_logger.info "The default formatter is :Apache. The :curl formatter can also be used."
my_logger.info "You can tell which method to call on the logger too. It is info by default."
HTTParty.get "http://google.com", logger: my_logger, log_level: :debug, log_format: :curl