diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-30 02:56:37 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2016-12-30 02:56:37 +0900 |
| commit | a81d908a4dd03010601b4685f019e28c6fd8dd2e (patch) | |
| tree | af5e6dcb8a6a6fd06b57592a9769571e8955360e /src | |
| parent | Add missing semicolon (diff) | |
| download | sharkey-a81d908a4dd03010601b4685f019e28c6fd8dd2e.tar.gz sharkey-a81d908a4dd03010601b4685f019e28c6fd8dd2e.tar.bz2 sharkey-a81d908a4dd03010601b4685f019e28c6fd8dd2e.zip | |
Update log message
Diffstat (limited to 'src')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index 490e80f5c7..8a3a66e228 100644 --- a/src/index.ts +++ b/src/index.ts @@ -184,7 +184,7 @@ async function init(): Promise<State> { // 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; } |