Merge pull request #8597 from colinux/rails-log-level

chore(prod): decrease log level to info in production
This commit is contained in:
Colin Darie 2023-02-08 16:17:32 +01:00 committed by GitHub
commit a3bf94e431
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ]