From 0a385cc67c71fef3e977ba4d135561e90a3adf83 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 14 Oct 2025 12:07:12 +1100 Subject: [PATCH] Use same variable name as prod, staging and test --- config/environments/development.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index c3b67c6bb1..a72cf058cd 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -27,7 +27,7 @@ Rails.application.configure do # To override this, set the appropriate locale in .env[.*] file. config.time_zone = ENV.fetch("TIMEZONE", "UTC") - config.log_level = ENV.fetch("DEV_LOG_LEVEL", :debug) + config.log_level = ENV.fetch("RAILS_LOG_LEVEL", :debug) # Enable/disable caching. By default caching is disabled. # Run rails dev:cache to toggle caching.