Skip to content

Instantly share code, notes, and snippets.

@moiristo
Forked from brainlid/net_http_debug.rb
Last active November 29, 2023 16:27
Show Gist options
  • Save moiristo/7fc46b644dc8a78e9b65c9f73a8d288f to your computer and use it in GitHub Desktop.
Save moiristo/7fc46b644dc8a78e9b65c9f73a8d288f to your computer and use it in GitHub Desktop.
Enable debug for all Ruby HTTP requests
require 'net/http'
module Net
class HTTP
def self.enable_debug!
class << self
alias_method :__new__, :new
def new(*args, &blk)
instance = __new__(*args, &blk)
instance.set_debug_output($stderr)
instance
end
end
end
def self.disable_debug!
class << self
alias_method :new, :__new__
remove_method :__new__
end
end
end
end
Net::HTTP.enable_debug!
# Net::HTTP.disable_debug!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment