##// END OF EJS Templates
add stderr to config.active_support.deprecation in test and dev env...
Toshi MARUYAMA -
r12165:90d3bb28b220
parent child
Show More
@@ -15,5 +15,5 RedmineApp::Application.configure do
15 # Don't care if the mailer can't send
15 # Don't care if the mailer can't send
16 config.action_mailer.raise_delivery_errors = false
16 config.action_mailer.raise_delivery_errors = false
17
17
18 config.active_support.deprecation = :log
18 config.active_support.deprecation = [:stderr, :log]
19 end
19 end
@@ -24,7 +24,7 RedmineApp::Application.configure do
24 # http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
24 # http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
25 config.action_controller.allow_forgery_protection = false
25 config.action_controller.allow_forgery_protection = false
26
26
27 config.active_support.deprecation = :log
27 config.active_support.deprecation = [:stderr, :log]
28
28
29 config.secret_token = 'a secret token for running the tests'
29 config.secret_token = 'a secret token for running the tests'
30 end
30 end
General Comments 0
You need to be logged in to leave comments. Login now