1 parent d0d941b commit 7951a95Copy full SHA for 7951a95
1 file changed
src/util/logger.ts
@@ -37,6 +37,7 @@ export class Log {
37
*/
38
static log(message: string, ...args: any[])
39
{
40
+ return;
41
console.log(`[INFO] [${PluginInfo.pluginId}]: ${message}`, ...args);
42
}
43
@@ -72,6 +73,7 @@ export class Log {
72
73
74
static eventFired(event: string, ...args: any[])
75
76
77
console.log(`[EVENT][${PluginInfo.pluginId}]: ${event}`, ...args);
78
79
0 commit comments