I for one got tired of seeing the css & js GET messages in my rails log till my colleague found a way around it. To disable them once and for all in development environment just add the following to your Gemfile, run 'bundle install' and run your server. No more asset logging in development. If you're not using the asset pipeline, then you can add it to the production group as well.

group :development do
gem 'disable_assets_logger'
gem 'webrick', '1.3.1'
end