We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c1fe3a commit 247a06fCopy full SHA for 247a06f
src/ParseServer.js
@@ -263,7 +263,7 @@ class ParseServer {
263
if (!process.env.TESTING) {
264
process.on('uncaughtException', (err) => {
265
if ( err.code === "EADDRINUSE" ) { // user-friendly message for this common error
266
- log.error(`Unable to listen on port ${err.port}. The port is already in use.`);
+ console.error(`Unable to listen on port ${err.port}. The port is already in use.`);
267
process.exit(0);
268
} else {
269
throw err;
0 commit comments