From a81d908a4dd03010601b4685f019e28c6fd8dd2e Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 30 Dec 2016 02:56:37 +0900 Subject: [PATCH] Update log message --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 490e80f5c..8a3a66e22 100644 --- a/src/index.ts +++ b/src/index.ts @@ -184,7 +184,7 @@ async function init(): Promise { // Check if a port is being used if (await portUsed.check(config.port)) { - Logger.error(`Port: ${config.port} is already used!`); + Logger.error(`Port ${config.port} is already used`); return State.failed; }