summary refs log tree commit diff
path: root/bundle/src/start.ts
diff options
context:
space:
mode:
authorFeatyre <88265031+Featyre@users.noreply.github.com>2021-11-22 21:44:26 +0800
committerGitHub <noreply@github.com>2021-11-22 21:44:26 +0800
commitb41d8c06ecdecb14ed82e0bb79005ab072572bbd (patch)
tree54f62af9aa75d0ffb00ecac2c0169683d8607bad /bundle/src/start.ts
parentUpdate Identify.ts (diff)
parentMerge pull request #491 from TheArcaneBrony/master (diff)
downloadserver-b41d8c06ecdecb14ed82e0bb79005ab072572bbd.tar.xz
Merge branch 'fosscord:master' into master
Diffstat (limited to '')
-rw-r--r--bundle/src/start.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/bundle/src/start.ts b/bundle/src/start.ts

index 4445fde6..8725ba61 100644 --- a/bundle/src/start.ts +++ b/bundle/src/start.ts
@@ -38,11 +38,12 @@ if (cluster.isMaster) { })` )} -Current commit: ${ +Commit Hash: ${ commit !== null ? `${cyan(commit)} (${yellow(commit.slice(0, 7))})` : "Unknown (Git cannot be found)" } +Cores: ${cyan(cores)} `) ); @@ -65,7 +66,7 @@ Current commit: ${ let delay = process.env.DATABASE?.includes("://") ? 0 : i * 1000; setTimeout(() => { cluster.fork(); - console.log(`[Process] worker ${i} started.`); + console.log(`[Process] worker ${cyan(i)} started.`); }, delay); } @@ -80,7 +81,7 @@ Current commit: ${ cluster.on("exit", (worker: any, code: any, signal: any) => { console.log( `[Worker] ${red( - `died with pid: ${worker.process.pid} , restarting ...` + `died with PID: ${worker.process.pid} , restarting ...` )}` ); cluster.fork();