chore: slight improvement to test execution time by disabling all but the most fatal of logging

This commit is contained in:
Nelson Jovel 2023-12-19 15:22:59 -08:00
parent 2f71cc1a90
commit e2f8cab06c

View file

@ -58,4 +58,7 @@ Rails.application.configure do
config.active_record.encryption.primary_key = "test"
config.active_record.encryption.deterministic_key = "test"
config.active_record.encryption.key_derivation_salt = "test"
config.logger = Logger.new(nil)
config.log_level = :fatal
end