Reputation: 1145
Where can I check what error my nodejs app is producing?
I dont have that error on my local machine, and heroku web worker only returns to browser:
"Internal Server Error"
How can I find out what is this error about?
Upvotes: 2
Views: 1107
Reputation: 2223
You can run heroku logs
command or use add-ons like Papertrail to manage your logs.
If you error has an error code you can find more info about it in Heroku Error Codes
Upvotes: 2