Ruby on rails log file size too large

前端 未结 9 1349
无人共我
无人共我 2021-02-01 16:01

I stumbled to learn that my rails3.1 log file is super large, around 21mb. Is this, in terms of size normal? What the log file would like in the production environment? Besides,

9条回答
  •  温柔的废话
    2021-02-01 16:19

    I automatically clear the logs in development on each server start with config/initializers/clear_development_log.rb:

    if Rails.env.development?
      `rake log:clear`
    end
    

提交回复
热议问题