Journalctl is an utility to see the system logs.
journalctl -u serviceName
# or qualified
journalctl -u serviceName.service
journalctl -u serviceName -b
# or qualified
journalctl -u serviceName.service -b
to see system logs live …
journalctl -f
To see logs from e.g. the last hour, and only from the cron daemon:
journalctl --since "1 hour ago" -t CRON