Bug 1141203 - Change terminal color back to normal after printing error.

This commit is contained in:
Krishnashish Gogoi 2015-04-15 01:32:29 +05:30
Родитель e0fe83cbf9
Коммит 1220dbfbdc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -43,7 +43,7 @@ HttpServer.prototype.start = function(port) {
console.log("Starting web server at http://localhost:" + port + "/");
this.server.listen(port).on('error', function(err) {
if (err.code === "EADDRINUSE") {
console.error("\033[31mPort %d is already in use, can't start web server.", port);
console.error("\033[31mPort %d is already in use, can't start web server.\033[0m", port);
}
});
};