From 89c4e489f5628feee8282f91fe99ff18eb355b68 Mon Sep 17 00:00:00 2001 From: thororen <78185467+thororen1234@users.noreply.github.com> Date: Fri, 12 Jul 2024 23:17:23 -0400 Subject: [PATCH] Equicord Logger --- src/utils/Logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Logger.ts b/src/utils/Logger.ts index 22a38136..e2dd1413 100644 --- a/src/utils/Logger.ts +++ b/src/utils/Logger.ts @@ -33,7 +33,7 @@ export class Logger { private _log(level: "log" | "error" | "warn" | "info" | "debug", levelColor: string, args: any[], customFmt = "") { if (IS_REPORTER && IS_WEB) { - console[level]("[Vencord]", this.name + ":", ...args); + console[level]("[Equicord]", this.name + ":", ...args); return; }