This commit is contained in:
OlegPhenomenon 2025-08-10 02:06:48 +00:00 committed by GitHub
commit d3c2041d95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -22,6 +22,8 @@ smtp_enable_starttls_auto: 'true' # 'false'
# If your mail server requires authentication, please change.
smtp_authentication: 'plain' # 'plain', 'login', 'cram_md5'
log_level: 'warn' # 'debug', 'info', 'warn', 'error', 'fatal', 'unknown
#
# ADMIN server
#

View file

@ -84,6 +84,9 @@ Rails.application.configure do
config.logger = ActiveSupport::TaggedLogging.new(logger)
end
config.log_level = ENV['log_level'] || :debug
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
end