diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 20:58:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2016-12-29 20:58:36 +0900 |
| commit | bdf4d528ebb72423689accbd2a54544dbd7b6f1c (patch) | |
| tree | 59ae8f876e447fb1111b38750767c7319b6dc883 | |
| parent | Use gutil instead of console (diff) | |
| download | sharkey-bdf4d528ebb72423689accbd2a54544dbd7b6f1c.tar.gz sharkey-bdf4d528ebb72423689accbd2a54544dbd7b6f1c.tar.bz2 sharkey-bdf4d528ebb72423689accbd2a54544dbd7b6f1c.zip | |
Fix wrong message
| -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 b6f18b8d2d..d03eab7249 100644 --- a/src/index.ts +++ b/src/index.ts @@ -85,7 +85,7 @@ async function master(): Promise<void> { // Spawn workers spawn(() => { - console.log(chalk.bold.green(`\nMisskey Core is now running. [port:${config.port}]`)); + console.log(chalk.bold.green(`\nMisskey is now running. [port:${config.port}]`)); // Listen new workers cluster.on('fork', worker => { |