Closed zastruga closed 5 years ago
Log rotation currently occurs at 5MB, we should change this to a daily log roll and hang on to maybe 5-10 days worth. Currently, this is in production.rb
production.rb
config.logger = Logger.new(config.paths['log'].first, 10, 5242880)
Changed this to keep 7 days worth of logs with daily rotation. Will go out in the next release.
Log rotation currently occurs at 5MB, we should change this to a daily log roll and hang on to maybe 5-10 days worth. Currently, this is in
production.rb
config.logger = Logger.new(config.paths['log'].first, 10, 5242880)