Logging in Ruby on Rails tends to be a little…verbose. For this site, my production.log had built up to 425MB in 6 months. Intending to use logrotate, I did a bit of googling and found this instead, which told me Rails could do it for me with the following code snippet: config.logger = Logger.new("#{RAILS_ROOT}/log/#{RAILS_ENV}.log", 50, 1.megabyte) However it doesn’t say where in config/environme