Skip to content

Instantly share code, notes, and snippets.

@dpaluy
Created April 29, 2023 03:46
Show Gist options
  • Save dpaluy/de3c501c252a5440033833b03e45e51e to your computer and use it in GitHub Desktop.
Save dpaluy/de3c501c252a5440033833b03e45e51e to your computer and use it in GitHub Desktop.
Debug Net HTTP
module Net::HTTPWithDebug
def initialize(*args)
super
set_debug_output(STDERR)
end
end
Net::HTTP.prepend(Net::HTTPWithDebug)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment