I've created a Capistrano task to execute a rake command. I plan to redirect the output (STDOUT) to a file. E.g.
cap production invoke:rake TASK=mytask > out
This works, but my output includes some additional Capistrano status output, e.g.
00:00 invoke:rake
01 $HOME/.rbenv/bin/rbenv exec bundle exec rake mytask
...
✔ 01 ubuntu@mydomain.com 11.399s
Is there any way to suppress this?