clarify server start log for development

This commit is contained in:
Nathaniel Tampus
2023-03-11 13:08:45 +08:00
parent e632fc0618
commit 775a32625c

View File

@@ -45,5 +45,5 @@ initSocket();
const port = process.env.PORT || 3001; const port = process.env.PORT || 3001;
server.listen(port, () => { server.listen(port, () => {
console.log(`listening on :${port}`); console.log(`chessu api server listening on :${port}`);
}); });