diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-02-22 15:56:43 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-02-22 15:56:43 -0800 |
commit | abf3f67e27b81cb1af54f3fca8bf8ddf1363e6ca (patch) | |
tree | b438d765daf69efa9cf535fe05e0fe224e6c2cca /railties/lib/rails/generators | |
parent | 5497432d71b88ae4b99c6c59199eba95d81f28f6 (diff) | |
parent | 4a98a3059f8903d1df64526bf53b456f2a8a7eb7 (diff) | |
download | rails-abf3f67e27b81cb1af54f3fca8bf8ddf1363e6ca.tar.gz rails-abf3f67e27b81cb1af54f3fca8bf8ddf1363e6ca.tar.bz2 rails-abf3f67e27b81cb1af54f3fca8bf8ddf1363e6ca.zip |
Merge pull request #4998 from fbuenemann/feature/configurable-log-flushing
Make automatic log flushing configurable
Diffstat (limited to 'railties/lib/rails/generators')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt b/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt index eb4dfa7c89..5fa6efbec0 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +++ b/railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt @@ -35,4 +35,7 @@ # Expands the lines which load the assets. config.assets.debug = true <%- end -%> + + # Disable automatic flushing of the log to improve performance. + #config.autoflush_log = false end |