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.

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?

share|improve this question

2 Answers

I think the /var/cron/log is only used by cron itself, but you could redirect stderr into some other log file:

00 23 * * * /path/to/whatever 2>/some/log
share|improve this answer
00 11 * * * /path_to_script 1>/output_file_name 2>/error_file_name

It will write standard output to /output_file_name and standard error to /error_file_name

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.