allow log levels to be configurable via ENV
This commit is contained in:
parent
cb064e8acf
commit
1f4a92b6d4
|
@ -51,6 +51,10 @@ Rails.application.configure do
|
|||
|
||||
config.action_mailer.perform_caching = false
|
||||
|
||||
# Use the lowest log level to ensure availability of diagnostic information
|
||||
# when problems arise.
|
||||
config.log_level = ENV.fetch("LOG_LEVEL") { "debug" }.to_sym
|
||||
|
||||
# Print deprecation notices to the Rails logger.
|
||||
config.active_support.deprecation = :log
|
||||
|
||||
|
@ -73,6 +77,6 @@ Rails.application.configure do
|
|||
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
||||
end
|
||||
|
||||
# For better_errors to work inside Docker we need
|
||||
# For better_errors to work inside Docker we need
|
||||
# to allow 0.0.0.0 as an IP in development context
|
||||
BetterErrors::Middleware.allow_ip! "0.0.0.0/0"
|
||||
|
|
|
@ -45,7 +45,7 @@ Rails.application.configure do
|
|||
|
||||
# Use the lowest log level to ensure availability of diagnostic information
|
||||
# when problems arise.
|
||||
config.log_level = :debug
|
||||
config.log_level = ENV.fetch("LOG_LEVEL") { "info" }.to_sym
|
||||
|
||||
# Prepend all log lines with the following tags.
|
||||
config.log_tags = [ :request_id ]
|
||||
|
|
|
@ -34,6 +34,10 @@ Rails.application.configure do
|
|||
# ActionMailer::Base.deliveries array.
|
||||
config.action_mailer.delivery_method = :test
|
||||
|
||||
# Use the lowest log level to ensure availability of diagnostic information
|
||||
# when problems arise.
|
||||
config.log_level = ENV.fetch("LOG_LEVEL") { "debug" }.to_sym
|
||||
|
||||
# Print deprecation notices to the stderr.
|
||||
config.active_support.deprecation = :stderr
|
||||
|
||||
|
|
Loading…
Reference in New Issue