Merged in development (pull request #51)

Server Indicator [ci skip]
This commit is contained in:
Patrick Fic
2021-05-11 16:42:38 +00:00

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
);
});
}