From 2eaae1f50b7fc34b90b2b7c83c55478b85d1130c Mon Sep 17 00:00:00 2001 From: bodhi Date: Wed, 30 Jun 2010 12:50:41 +1000 Subject: add note of which configuration option to set in deprecation warning message [#5012 state:resolved] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: José Valim --- activesupport/lib/active_support/railtie.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/railtie.rb b/activesupport/lib/active_support/railtie.rb index 7970d39faf..c2deba3b1b 100644 --- a/activesupport/lib/active_support/railtie.rb +++ b/activesupport/lib/active_support/railtie.rb @@ -25,14 +25,16 @@ module ActiveSupport if defaults.key?(env) msg = "You did not specify how you would like Rails to report " \ "deprecation notices for your #{env} environment, please " \ - "set it to :#{defaults[env]} at config/environments/#{env}.rb" + "set config.active_support.deprecation to :#{defaults[env]} " \ + "at config/environments/#{env}.rb" warn msg ActiveSupport::Deprecation.behavior = defaults[env] else msg = "You did not specify how you would like Rails to report " \ "deprecation notices for your #{env} environment, please " \ - "set it to :log, :notify or :stderr at config/environments/#{env}.rb" + "set config.active_support.deprecation to :log, :notify or " \ + ":stderr at config/environments/#{env}.rb" warn msg ActiveSupport::Deprecation.behavior = :stderr @@ -55,4 +57,4 @@ module ActiveSupport Time.zone_default = zone_default end end -end \ No newline at end of file +end -- cgit v1.2.3