Skip to content

Instantly share code, notes, and snippets.

@liwei78
Forked from jeremy/gist:1383337
Created March 21, 2014 05:14
Show Gist options
  • Save liwei78/9679946 to your computer and use it in GitHub Desktop.
Save liwei78/9679946 to your computer and use it in GitHub Desktop.
require 'restclient'
# RestClient logs using << which isn't supported by the Rails logger,
# so wrap it up with a little proxy object.
RestClient.log =
Object.new.tap do |proxy|
def proxy.<<(message)
Rails.logger.info message
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment