Referensi: https://askubuntu.com/a/85560
Do not redirect error output to /dev/null and grep /var/log/syslog for cron output.
grep cron /var/log/syslog
You can immediately show errors when saving a file after editing /etc/crontab or files inside /etc/cron.d/ with:
tail -f /var/log/syslog | grep --line-buffered cron
If the edit is ok, you will only see the RELOAD notice, errors will occur like
Jul 9 09:39:01 vm cron[1129]: Error: bad day-of-month; while reading /etc/cron.d/new
Ref: https://askubuntu.com/a/792072
Although very rare, sometimes cron stops working properly even though the service is running. Here is how to verify that crond is running and stop/start the service.
On Linux:
service crond status
service crond stop
service crond start
On Ubuntu and other Debian-based systems:
service cron status
service cron stop
service cron start