Is there a way to decrease the amount of cruft that you look at when you're running 'rails server thin'? Right now, I see all the sql calls and cache calls, but I just want to focus on the debug/logger messages.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can reconfigure the ActiveRecord logger. Edit development.rb and add the following line:
|
|||
|
|
|
If you have same settings in YAML for both development and Production, Try starting the this server with these parameters:
|
|||
|
|
|
I found Ryan Bates' revised railscast "The Logger" incredibly helpful. This covers the quiet_assets gem, which removes asset-related logs. |
|||
|
|