Simpler server start message.

This commit is contained in:
Jayden Seric 2017-11-18 19:50:19 +11:00
parent fe620f5f70
commit 2cf16a48af

View File

@ -36,8 +36,6 @@ server.listen(process.env.PORT, error => {
// eslint-disable-next-line no-console
console.info(
`Serving at http://localhost:${process.env.PORT} in ${
process.env.NODE_ENV
} mode.`
`Serving http://localhost:${process.env.PORT} for ${process.env.NODE_ENV}.`
)
})