现在在环境中的 production.rb 中我编写代码
config.logger = Logger.new("#{Rails.root.to_s}/log/production.log", 'daily')
因此,日志文件将在每天午夜轮换。
如何编写用于旋转日志的代码define time
?
现在在环境中的 production.rb 中我编写代码
config.logger = Logger.new("#{Rails.root.to_s}/log/production.log", 'daily')
因此,日志文件将在每天午夜轮换。
如何编写用于旋转日志的代码define time
?
https://stackoverflow.com/a/4883967/1241447 - 使用系统 logrotate.d
http://www.ruby-doc.org/stdlib-1.9.3/libdoc/logger/rdoc/Logger.html#method-c-new - 使用内置功能