将rake后台任务保存到日志? (使用Resque)

时间:2012-04-03 20:14:27

标签: ruby-on-rails ruby-on-rails-3 logging rake

我猜这很简单,但仍然...... 我有一个后台任务,Resque失败,输出太长,无法在终端窗口看到..我认为是时候记录它了。我通过

执行它
bundle exec env rake resque:work QUEUE='*'

问题是 - 如何将输出保存到日志文件?

我查看了日志记录(development.log,当然没有在那里显示,b / c它发生在rake端)...

谢谢!

1 个答案:

答案 0 :(得分:0)

看看这个拉取请求:

https://github.com/sj26/resque/commit/05e4c5e6f92fe62b25db40984b20dad4b9f870d8

阅读自述文件。你试过设置VVERBOSE = 1吗?


您可以将输出发送到文件:

bundle exec env rake resque:work QUEUE='*' >> log/resque.log

我在我的服务器上运行resque

nohup bundle exec rake resque:work QUEUE=general PIDFILE=tmp/pids/resque_worker_QUEUE.pid & >> log/resque_worker_QUEUE.log 2>&1

不能告诉你这是最好的方式,但它确实有用。