The heroku logs are a great resource to check what happened to your app when things go wrong.. Unfortunately, they also log a great deal of information. Is there some way I can
Try this:
heroku logs -t | grep 'error'
To get a running list of errors as and when they occur.
The inverted commas around 'error' did it for me.
'error'