gkucmierz
gkucmierz

Reputation: 1145

How to check errors log on heroku? (nodejs app)

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

Answers (1)

Andrés Andrade
Andrés Andrade

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

Related Questions