Heroku、DJ、rake 任务日志记录
我有一个使用 Delayed_Job 在后台运行的 rake 任务。当我进行开发时,rake 任务会写入 rake.log 文件。但是如何在生产环境中写入日志文件呢?
我在 Heroku 的 Cedar 上使用 Rails 3.1 应用程序。我安装了heroku 日志插件,并将其设置为“扩展”。我在 rake 脚本中同时使用“puts”和“Rails.logger”。 heroku 日志和日志 --tail 作为应用程序其余部分的记录器工作得很好,但 rake 任务的唯一日志表明工作进程已成功启动。
heroku 文档 说“任何写入标准输出 (stdout) 或标准错误 (stderr) 的内容都是捕获到您的日志中,这意味着您可以使用简单的 put 语句从应用程序代码中的任何位置进行日志记录”。如何使延迟作业 rake 任务中的代码实现这一点?
I have a rake task running in the background using Delayed_Job. When I'm in development, the rake task writes to a rake.log file. But how do I get the log file written to in production?
I am on Cedar at Heroku with a rails 3.1 app. I have the heroku Logging addon installed, set to Expanded. I am using both 'puts' and 'Rails.logger' in the rake script. heroku logs and logs --tail works beautifully as a logger for the rest of the app, but the only logs for the rake task say that the worker process has started successfully.
The heroku docs say that "Anything written to standard out (stdout) or standard error (stderr) is captured into your logs. This means that you can log from anywhere in your application code with a simple puts statement". How can I make this true for code within a delayed job rake task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论