Skip to content

Commit

Permalink
Log error on server crash. Closes #2022 (#2023)
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb committed Apr 14, 2021
1 parent 994689b commit b38afdd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ gracefulFs.gracefulify(fs);
myServer = new webgme.standaloneServer(gmeConfig);
myServer.start(function (err) {
if (err) {
console.error(err);
process.exit(1);
}

Expand Down

0 comments on commit b38afdd

Please sign in to comment.