Merge pull request #17757 from zzak/railties-default-to-debug-log_level

Always default the log_level to :info for Railties
This commit is contained in:
Godfrey Chan 2014-11-25 01:55:20 -08:00
commit 6b8cd6878e

@ -143,6 +143,7 @@ def build_app(options = {})
config.active_support.deprecation = :log
config.active_support.test_order = :random
config.action_controller.allow_forgery_protection = false
config.log_level = :info
RUBY
end