From f14d5926e1f54596e89300db633697e78a1be6af Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 29 Aug 2017 09:06:51 +0200 Subject: [PATCH] explicitely set log_level for production Without this setting there is a warning displayed: DEPRECATION WARNING: You did not specify a `log_level` in `production.rb` --- config/environments/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index cb3a5d67..4e2c2e79 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -36,7 +36,7 @@ Osem::Application.configure do # config.force_ssl = true # See everything in the log (default is :info) - # config.log_level = :debug + config.log_level = :info # Prepend all log lines with the following tags # config.log_tags = [ :subdomain, :uuid ]