mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Move quiet option to development.rb
This option is used in a initializer hook that runs before the config/initializers files so it will not work if it is set there.
This commit is contained in:
parent
2ff5a1755f
commit
7291178265
2 changed files with 3 additions and 3 deletions
|
@ -46,6 +46,9 @@ Rails.application.configure do
|
|||
# This option may cause significant delays in view rendering with a large
|
||||
# number of complex assets.
|
||||
config.assets.debug = true
|
||||
|
||||
# Suppress logger output for asset requests.
|
||||
config.assets.quiet = true
|
||||
<%- end -%>
|
||||
|
||||
# Raises error for missing translations
|
||||
|
|
|
@ -9,6 +9,3 @@ Rails.application.config.assets.version = '1.0'
|
|||
# Precompile additional assets.
|
||||
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
||||
# Rails.application.config.assets.precompile += %w( search.js )
|
||||
|
||||
# Suppress logger output for asset requests.
|
||||
Rails.application.config.assets.quiet = true
|
||||
|
|
Loading…
Reference in a new issue