Logs button shows unending throbber + CPU usage irregular

Hey @CarlyRaeJepsenStan,

  1. The unending cycling circles can be stopped by appending this line to your server.js or your main script file.
var listener = app.listen(process.env.PORT, function () {
  console.log('Your app is listening on port ' + listener.address().port);
});
  1. As for the varying CPU, see this post:
1 Like