Merge pull request #8597 from colinux/rails-log-level
chore(prod): decrease log level to info in production
This commit is contained in:
commit
a3bf94e431
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ Rails.application.configure do
|
|||
|
||||
# Use the lowest log level to ensure availability of diagnostic information
|
||||
# when problems arise.
|
||||
config.log_level = :debug
|
||||
config.log_level = ENV["DS_ENV"] == "staging" ? :debug : :info
|
||||
|
||||
# Prepend all log lines with the following tags.
|
||||
# config.log_tags = [ :subdomain, :uuid ]
|
||||
|
|
Loading…
Reference in a new issue