Verify Node Exit Live App Console to Heroku

I am currently having a problem with the post request my node app is receiving from my ios app acting as a client. This only happens when the node app is live on heroku. It works fine on localhost. So I want to know if there is a way to check the console logs when the app is active. I know about running heroku -t, but I want to see the console output to see what happens to the other host between the localhost and the live app.

+3


source to share


1 answer


You can do heroku logs -t -a yourapp

to see the live tail of heroku logs.

The papertrail app is also very pretty, it gives you a nice view in the tail of the magazine that you can use to search and filter. heroku addons:add papertrail:choklad



Loggy is another great option. You don't have a live look at the tail, but their search and filter capabilities are fantastic. https://www.loggly.com/

+4


source







All Articles