From 1e46e42352c1cc5dc2bd77910ea266c6326b9d90 Mon Sep 17 00:00:00 2001 From: Dylan Knutson Date: Fri, 15 Aug 2025 22:15:19 +0000 Subject: [PATCH] INFO log levels for staging/development --- config/environments/development.rb | 1 + config/environments/staging.rb | 1 + 2 files changed, 2 insertions(+) diff --git a/config/environments/development.rb b/config/environments/development.rb index ca42baa3..4e0faf24 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -21,6 +21,7 @@ Rails.application.configure do # Enable server timing config.server_timing = true config.action_dispatch.x_sendfile_header = "X-Sendfile" + config.log_level = :info # Enable/disable caching. By default caching is disabled. # Run rails dev:cache to toggle caching. diff --git a/config/environments/staging.rb b/config/environments/staging.rb index 5bb18634..81b13d2a 100644 --- a/config/environments/staging.rb +++ b/config/environments/staging.rb @@ -19,6 +19,7 @@ Rails.application.configure do # Enable server timing config.server_timing = true + config.log_level = :info config.action_dispatch.x_sendfile_header = "X-Sendfile"