at=error code=H10 desc="App crashed" method=GET path="/" host=timeless-watches-app.herokuapp.com request_id=658b80a4-80ad-41f2-8aef-29609b1632f4 fwd="155.93.199.9" dyno= connect= service= status=503 bytes= protocol=https code example

Example: at=error code=h10 desc="app crashed" method=get path="/" host

Found solution for me here: Heroku + node.js error (Web process failed to bind to $PORT within 60 seconds of launch)

In my case my app crashed because I was hard setting the PORT, instead of using the port that heroku dinamicaly sets, which can be accessed with process.env.PORT

app.listen(process.env.PORT || 3000, function(){
  console.log("Express server listening on port %d in %s mode", this.address().port, app.settings.env);
});

Tags:

Misc Example