From b069145bffad94004a459cc6581225b288b80e4c Mon Sep 17 00:00:00 2001 From: "Jonny_Bro (Nikita)" Date: Tue, 27 Jun 2023 00:43:31 +0500 Subject: [PATCH] log error --- InitFunctions/initServer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InitFunctions/initServer.js b/InitFunctions/initServer.js index 5e809c7..c20d7cf 100644 --- a/InitFunctions/initServer.js +++ b/InitFunctions/initServer.js @@ -19,7 +19,7 @@ module.exports = (app, config, themeConfig, modules) => { try { server = https.createServer(options, app); } catch (e) { - console.log(`${"discord-dashboard issue:".red} There's a problem while creating server, check if the port specified is already on use.`); + console.log(`${"discord-dashboard issue:".red} There's a problem while creating server, check if the port specified is already on use.\n${e}`); } } else { server = http.createServer(app);