Is there an opportunity to write STDERR message to the /var/cron/log file when a job fails to execute? Or only the return codes can be written?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I think the /var/cron/log is only used by cron itself, but you could redirect stderr into some other log file:
|
|||
|
|
It will write standard output to /output_file_name and standard error to /error_file_name |
|||
|
|