Question

http://www.ruby-doc.org/gems/docs/b/bartzon-httparty-0.6.1/HTTParty/ClassMethods.html#method-i-debug_output

How should I control the HTTParty output using a rails logger? I don't want to see this on the staging or prod environment.

class FooResource
   include HTTParty
   persistent_connection_adapter
   debug_output $stderr
...
}
Was it helpful?

Solution

This might do the trick:

debug_output $stderr if Rails.env.development?
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top