summary refs log tree commit diff
path: root/bundle/src/start.ts
diff options
context:
space:
mode:
authorChris Chrome <christophercookman@gmail.com>2021-12-26 13:38:25 -0500
committerGitHub <noreply@github.com>2021-12-26 13:38:25 -0500
commit78b33a8b7a56caac8b460daa63a2f48d7c8b5549 (patch)
tree4d72614aef511f0e44be20d425dfae79a56dce1e /bundle/src/start.ts
parentFix the casing (diff)
parentAdd env name in sentry, set default sentry endpoint (diff)
downloadserver-78b33a8b7a56caac8b460daa63a2f48d7c8b5549.tar.xz
Merge pull request #553 from TheArcaneBrony/master
Remove fs-extras, add Sentry support, fix compile errors, fix some typos
Diffstat (limited to 'bundle/src/start.ts')
-rw-r--r--bundle/src/start.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/src/start.ts b/bundle/src/start.ts

index 1b21659e..7660b296 100644 --- a/bundle/src/start.ts +++ b/bundle/src/start.ts
@@ -2,7 +2,7 @@ import "reflect-metadata"; import cluster, { Worker } from "cluster"; import os from "os"; -import { red, bold, yellow, cyan } from "nanocolors"; +import { red, bold, yellow, cyan } from "picocolors"; import { initStats } from "./stats"; import { config } from "dotenv"; config(); @@ -43,7 +43,7 @@ Commit Hash: ${ ? `${cyan(commit)} (${yellow(commit.slice(0, 7))})` : "Unknown (Git cannot be found)" } -Cores: ${cyan(cores)} +Cores: ${cyan(os.cpus().length)} (Using ${cores} thread(s).) `) );