Change "listening on" console message from red to yellow

(Because red looks like an error)
This commit is contained in:
Bryan Housel
2017-10-02 08:53:10 -04:00
parent a20cc8ed3f
commit f7b7bd7d5f

View File

@@ -57,5 +57,5 @@ if (isDevelopment) {
ecstatic({ root: __dirname, cache: 0 })
).listen(8080);
console.log(colors.red('Listening on :8080'));
console.log(colors.yellow('Listening on :8080'));
}