如何在白天拆分Dancer错误日志?

时间:2012-07-26 09:29:55

标签: perl logging dancer

我正在尝试将舞者和明星用于我的网站。我成功地将错误日志设置到文件中。当然我可以运行脚本来每天移动错误日志。但我只是想知道是退出方法还是cpan模块来解决问题。 感谢〜

1 个答案:

答案 0 :(得分:8)

不要重新发明轮子,你将重复已修复过去的错误。

使用logrotate。它是一种unix工具,专门用于此类任务。

要轮换日志,您通常会在/etc/logrotate.d/中为您的任务创建一个logrotate配置。

例如,每天轮换并保存您的日志14天:

# /etc/logrotate.d/dancer-error-log

/path/to/my/dancer-error.log {
    daily
    rotate 14
    create 0660 mydanceruser mydancergroup
}