First, I would probably configure cron to send any output using MAILTO:
In / etc / crontab:
MAILTO=username
Secondly, I usually add something to my script, which (almost) cannot fail, for example:
#!/bin/sh
echo "$0 ran on `date +%c`" >> /tmp/crontab_test.log
python script cron, - - script.