Update error message
This commit is contained in:
parent
c66532d18f
commit
874837666c
@ -122,11 +122,13 @@ async function init(): Promise<Config> {
|
|||||||
configLogger.info(`Maintainer: ${config.maintainer.name}`);
|
configLogger.info(`Maintainer: ${config.maintainer.name}`);
|
||||||
|
|
||||||
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
|
if (process.platform === 'linux' && !isRoot() && config.port < 1024) {
|
||||||
throw 'You need root privileges to listen on port below 1024 on Linux';
|
Logger.error('You need root privileges to listen on port below 1024 on Linux');
|
||||||
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (await portscanner.checkPortStatus(config.port, '127.0.0.1') === 'open') {
|
if (await portscanner.checkPortStatus(config.port, '127.0.0.1') === 'open') {
|
||||||
throw `Port ${config.port} is already in use`;
|
Logger.error(`Port ${config.port} is already in use`)
|
||||||
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try to connect to MongoDB
|
// Try to connect to MongoDB
|
||||||
|
Loading…
Reference in New Issue
Block a user