diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2014-08-17 16:40:41 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2014-08-17 16:40:41 -0700 |
commit | c20c86ee9e944e38ce0eb581e4af3ad4af839875 (patch) | |
tree | c1cb742270bcb655543e670d3d66582d29a0a6bc /railties/lib | |
parent | 8f15565de879bd40c8390884d1d31e52de240323 (diff) | |
download | rails-c20c86ee9e944e38ce0eb581e4af3ad4af839875.tar.gz rails-c20c86ee9e944e38ce0eb581e4af3ad4af839875.tar.bz2 rails-c20c86ee9e944e38ce0eb581e4af3ad4af839875.zip |
Dont encourage people to run without autoflush in production
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt b/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt index 277fe01e89..bec7716a9b 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +++ b/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt @@ -70,9 +70,6 @@ Rails.application.configure do # Send deprecation notices to registered listeners. config.active_support.deprecation = :notify - # Disable automatic flushing of the log to improve performance. - # config.autoflush_log = false - # Use default logging formatter so that PID and timestamp are not suppressed. config.log_formatter = ::Logger::Formatter.new <%- unless options.skip_active_record? -%> |