There seems to be other ways to deal with this, but a simple filter with grep can help:
tail -f log/development.log | grep -vE "(^\s*$|asset)"
Thanks to: https://github.com/rails/rails/issues/2639
Posted by Saul to rails (2012-12-14 17:34)
There seems to be other ways to deal with this, but a simple filter with grep can help:
tail -f log/development.log | grep -vE "(^\s*$|asset)"
Thanks to: https://github.com/rails/rails/issues/2639