1

when ever I am using my app in local machine I have to on the server

    $rails server 

each time I do something in my app in the browser all the assets, jquery logs appear in the terminal like

Started GET "/assets/jquery.ui.core.css?body=1" for 127.0.0.1 at 2013-10-11 12:38:44 +0530
....
.....

and so on like this . If i dont want to see them in my logs each time what should I do?

Am new to Linux

Charles
  • 50,943
  • 13
  • 104
  • 142
rails.newbie
  • 63
  • 2
  • 11

1 Answers1

1

Possible this How to disable logging of asset pipeline (sprockets) messages in Rails 3.1? is the answer your question.

Briefly, you can use this gem: https://github.com/evrone/quiet_assets

Community
  • 1
  • 1
Psylone
  • 2,788
  • 1
  • 18
  • 15