Can anyone tell me how to silence deprecation warinings in Rails 3?

I have a few situations where it is throwing false positives. Namely using - for loops in haml and f.error_messages from the dynamic_form plugin.

Thanks

link|improve this question

71% accept rate
Do you want to silence all deprecation warnings or just warnings in selected blocks of code? – mikej Apr 22 '10 at 9:52
preferably just the pieces of code i know are safe, but either way if i could toggle it would be nice just to cut out some log noise. – sfusion Apr 22 '10 at 12:46
feedback

2 Answers

up vote 16 down vote accepted

To silence all deprecation warnings you can do:

ActiveSupport::Deprecation.silenced = true

This could be placed in an initializer or in the environment file for a specific environment (e.g. to silence only in production for example.)

Or for a specific section of code, enclose it in a block:

ActiveSupport::Deprecation.silence do
  # no warnings for any use of deprecated methods here
end
link|improve this answer
both work a treat, thank you :) – sfusion Apr 22 '10 at 13:44
feedback

Ryan Daigle wrote an article about this, in which he also showed how you can intercept the deprecation warning and do something else with it, like send it to a log file:

ActiveSupport::Deprecation.behavior = Proc.new { |msg, stack| MyLogger.warn(msg) }

http://ryandaigle.com/articles/2006/12/4/how-to-turn-deprecation-warnings-off-in-rails

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.