diff options
author | The Arcane Brony <myrainbowdash949@gmail.com> | 2021-12-25 11:09:48 +0000 |
---|---|---|
committer | The Arcane Brony <myrainbowdash949@gmail.com> | 2021-12-25 12:09:48 +0100 |
commit | 9909e5a174cdbb79224b64ccbee8111ad1ee440e (patch) | |
tree | 79312cc6427cce6510076113de0b686a5351f7f7 /bundle/src/Server.ts | |
parent | Add Sentry, fix compile errors (diff) | |
download | server-9909e5a174cdbb79224b64ccbee8111ad1ee440e.tar.xz |
Replace nanocolors with picocolors
Diffstat (limited to 'bundle/src/Server.ts')
-rw-r--r-- | bundle/src/Server.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts index d07a6ce0..0d5e3d1f 100644 --- a/bundle/src/Server.ts +++ b/bundle/src/Server.ts @@ -6,7 +6,7 @@ import * as Api from "@fosscord/api"; import * as Gateway from "@fosscord/gateway"; import { CDNServer } from "@fosscord/cdn"; import express from "express"; -import { green, bold } from "nanocolors"; +import { green, bold, yellow } from "picocolors"; import { Config, initDatabase } from "@fosscord/util"; import * as Sentry from "@sentry/node"; import * as Tracing from "@sentry/tracing"; @@ -61,7 +61,7 @@ async function main() { //Sentry if (Config.get().sentry.enabled) { console.log( - "[Bundle] You are using Sentry! This may slightly impact performance on large loads!" + `[Bundle] ${yellow("You are using Sentry! This may slightly impact performance on large loads!")}` ); Sentry.init({ dsn: Config.get().sentry.endpoint, |