Server Indicator [ci skip]

This commit is contained in:
Patrick Fic
2021-05-11 09:37:42 -07:00
parent ad454c806c
commit 22fed1613e

View File

@@ -151,6 +151,8 @@ if (process.env.NODE_ENV === "production") {
} else {
app.listen(port, (error) => {
if (error) throw error;
console.log("[DEVELOPMENT] Non Secured Server running on port " + port);
console.log(
`[${process.env.NODE_ENV}] Non Secured Server running on port ` + port
);
});
}