How to log cron jobs?

cron, logging

Solution

* * * * * myjob.sh >> /var/log/myjob.log 2>&1

will log all output from the cron job to /var/log/myjob.log

You might use `mail` to send emails. Most systems will send unhandled `cron` job output by email to root or the corresponding user.

Problem

I want to know how I can see exactly what the cron jobs are doing on each execution. Where are the log files located? Or can I send the output to my email? I have set the email address to send the log when the cron job runs but I haven't received anything yet.

Original source

Related problems