diff --git a/src/util/logger.ts b/src/util/logger.ts index 287d46e..2c41cd6 100644 --- a/src/util/logger.ts +++ b/src/util/logger.ts @@ -37,6 +37,7 @@ export class Log { */ static log(message: string, ...args: any[]) { + return; console.log(`[INFO] [${PluginInfo.pluginId}]: ${message}`, ...args); } @@ -72,6 +73,7 @@ export class Log { */ static eventFired(event: string, ...args: any[]) { + return; console.log(`[EVENT][${PluginInfo.pluginId}]: ${event}`, ...args); }