From b428c614c69cf1409d096bc071841f0203f69b98 Mon Sep 17 00:00:00 2001 From: andrew nimmo Date: Fri, 12 Jan 2024 22:44:42 -0800 Subject: [PATCH] Switch logging back to :info --- 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 81d7806762..58aae6c98e 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -121,7 +121,7 @@ loggers = [ "log/production.log" ].map do |output| - ActiveSupport::Logger.new(output, level: Logger::DEBUG). + ActiveSupport::Logger.new(output, level: Logger::INFO). tap { |logger| logger.formatter = Logger::Formatter.new } # .then { |logger| ActiveSupport::TaggedLogging.new(logger) } end