Equicord Logger

This commit is contained in:
thororen 2024-07-12 23:17:23 -04:00 committed by GitHub
parent 3e32bbccfe
commit 89c4e489f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}