ruby 何时在 Ubuntu 中记录 gem 的位置?
我在 Ubuntu 11 上运行每当 (cron) gem,似乎找不到日志在哪里或在哪里设置日志文件。我认为有些问题,如果没有日志文件,我似乎无法调试它。
谢谢
I'm running the whenever (cron) gem on Ubuntu 11 and can't seem to find where the log is or where to set the log file. I think something is amiss and I can't seem to be able to debug it without the log file.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你错过了。每当 github wiki 有一个页面: 输出重定向又名记录你的 cron 作业
Yes you've missed it. Whenever's github wiki has a page for this: Output redirection aka logging your cron jobs
cron 日志将告诉您 cron 作业何时运行和更改。默认情况下,Ubuntu 禁用 cron 日志。
以下步骤将启用 cron 日志,以便更好地调试详细信息。
您必须记录 cron 运行的命令的结果: 参见詹姆斯的回答
The cron log will tell you when cron jobs are run and changed. By default, Ubuntu disables the cron log.
The following steps will enable the cron log to allow for better debugging details.
The results of a commands run by cron have to be logged by you: see James's answer