To check if your cron is running anything at this moment in time
pstree -ap `pidof cron`
and you'll either get
2775,cron # your pid (2775) will be different to mine
or a tree output with the child processes which cron is running. Also, as Hamoriz says, the logs should be in /var/log/syslog. Then, the below:
grep CRON /var/log/syslog
will provide you the logs just for cron
To know about Linux join the Linux training