Skip to content

Instantly share code, notes, and snippets.

@yudai
Created November 19, 2013 02:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yudai/7539098 to your computer and use it in GitHub Desktop.
Save yudai/7539098 to your computer and use it in GitHub Desktop.
Fog request logging
module Fog
module Core
class Connection
def request(params, &block)
reset unless @persistent
p params
@excon.request(params, &block)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment