1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/lib/auth/oauth_faraday_formatter.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
516 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Auth::OauthFaradayFormatter < Faraday::Logging::Formatter
def request(env)
warn <<~LOG
OAuth Debugging: request #{env.method.upcase} #{env.url}
Headers:
#{env.request_headers}
Body:
#{env[:body]}
LOG
end
def response(env)
warn <<~LOG
OAuth Debugging: response status #{env.status}
From #{env.method.upcase} #{env.url}
Headers:
#{env.response_headers}
Body:
#{env[:body]}
LOG
end
end