diff options
author | Filip Bartuzi <filip@bartuzi.me> | 2014-09-11 10:06:24 +0200 |
---|---|---|
committer | Filip Bartuzi <filip@bartuzi.me> | 2014-09-11 10:06:24 +0200 |
commit | dbe9759278e1763f69563a864177e4c21af5c723 (patch) | |
tree | 078ecfceeafa42757261826c2821ff63f9fb591b | |
parent | e581b011165766a64a6749fb1465d76e90c14cb5 (diff) | |
download | rails-dbe9759278e1763f69563a864177e4c21af5c723.tar.gz rails-dbe9759278e1763f69563a864177e4c21af5c723.tar.bz2 rails-dbe9759278e1763f69563a864177e4c21af5c723.zip |
Changes puts to logger.info
-rw-r--r-- | guides/source/asset_pipeline.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 2a8940684f..c19c8e0bec 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -735,10 +735,10 @@ Rails.application.config.assets.precompile << Proc.new do |path| full_path = Rails.application.assets.resolve(path).to_path app_assets_path = Rails.root.join('app', 'assets').to_path if full_path.starts_with? app_assets_path - puts "including asset: " + full_path + logger.info "including asset: " + full_path true else - puts "excluding asset: " + full_path + logger.info "excluding asset: " + full_path false end else |