From 268d2fc144aea5a31173759f6919b92908096902 Mon Sep 17 00:00:00 2001 From: Molly Struve Date: Wed, 26 Aug 2020 16:15:29 -0500 Subject: [PATCH] [deploy] Optimization:Default Production Logging to Error (#10025) --- 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 58ee960fa..e459a7fc7 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -56,7 +56,7 @@ Rails.application.configure do # Use the lowest log level to ensure availability of diagnostic information # when problems arise. - config.log_level = ENV["LOG_LEVEL"] || :info + config.log_level = ENV["LOG_LEVEL"] || :error # Prepend all log lines with the following tags. config.log_tags = [:request_id]