DEV: Enable all the ActiveRecord goodness in development env.

This commit is contained in:
Guo Xiang Tan 2020-04-29 14:07:42 +08:00
parent 960fd94758
commit 1d04fb24f8
No known key found for this signature in database
GPG Key ID: FBD110179AAC1F20
1 changed files with 5 additions and 1 deletions

View File

@ -39,7 +39,7 @@ Discourse::Application.configure do
config.log_level = ENV['DISCOURSE_DEV_LOG_LEVEL'] if ENV['DISCOURSE_DEV_LOG_LEVEL']
if ENV['RAILS_VERBOSE_QUERY_LOGS']
if ENV['RAILS_VERBOSE_QUERY_LOGS'] != 0
config.active_record.verbose_query_logs = true
end
@ -78,6 +78,10 @@ Discourse::Application.configure do
end
config.after_initialize do
if ENV["RAILS_COLORIZE_LOGGING"] != "0"
config.colorize_logging = true
end
if ENV['BULLET']
Bullet.enable = true
Bullet.rails_logger = true