]> source.dussan.org Git - redmine.git/commitdiff
prevent "config.log_level" DEPRECATION WARNING
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 18 Jan 2015 14:05:35 +0000 (14:05 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 18 Jan 2015 14:05:35 +0000 (14:05 +0000)
DEPRECATION WARNING: You did not specify a `log_level` in `production.rb`.
Currently, the default value for `log_level` is `:info` for the production environment
and `:debug` in all other environments.
In Rails 5 the default value will be unified to `:debug` across all environments.
To preserve the current setting, add the following line to your `production.rb`:

   config.log_level = :info

git-svn-id: http://svn.redmine.org/redmine/trunk@13899 e93f8b46-1217-0410-a6f0-8f06a7374b81

config/environments/production.rb

index 85cd3890cfa5f9a0c652498dab3d16831974771b..59e7a37576c7b67a9609b8fe5913950570d953e6 100644 (file)
@@ -1,6 +1,8 @@
 Rails.application.configure do
   # Settings specified here will take precedence over those in config/application.rb
 
+  config.log_level = :info
+
   # Code is not reloaded between requests.
   config.cache_classes = true