diff options
author | Thesourtimes <cckhmck@gmail.com> | 2021-11-11 11:31:03 +0300 |
---|---|---|
committer | Thesourtimes <cckhmck@gmail.com> | 2021-11-11 11:31:03 +0300 |
commit | 4e795a14151437872ae0980d2fb0fb69b6a902be (patch) | |
tree | c549b5964d43dfd39385c5e5a02a3c8e16fa885a /bundle | |
parent | Put autoregister scripts on a seperate asset file (diff) | |
download | server-4e795a14151437872ae0980d2fb0fb69b6a902be.tar.xz |
minor capitulation
Diffstat (limited to 'bundle')
-rw-r--r-- | bundle/src/start.ts | 2 | ||||
-rw-r--r-- | bundle/src/stats.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bundle/src/start.ts b/bundle/src/start.ts index f683d3e3..8725ba61 100644 --- a/bundle/src/start.ts +++ b/bundle/src/start.ts @@ -81,7 +81,7 @@ Cores: ${cyan(cores)} 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(); diff --git a/bundle/src/stats.ts b/bundle/src/stats.ts index 9bd9131e..8d87f9d9 100644 --- a/bundle/src/stats.ts +++ b/bundle/src/stats.ts @@ -6,7 +6,7 @@ export function initStats() { console.log(`[Path] running in ${__dirname}`); console.log(`[CPU] ${osu.cpu.model()} Cores x${osu.cpu.count()}`); console.log(`[System] ${os.platform()} ${os.arch()}`); - console.log(`[Process] running with pid: ${process.pid}`); + console.log(`[Process] running with PID: ${process.pid}`); if (process.getuid && process.getuid() === 0) { console.warn( red( |