Skip to content

Commit 7951a95

Browse files
committed
fix: disable EVENT and INFO logging
1 parent d0d941b commit 7951a95

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/util/logger.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export class Log {
3737
*/
3838
static log(message: string, ...args: any[])
3939
{
40+
return;
4041
console.log(`[INFO] [${PluginInfo.pluginId}]: ${message}`, ...args);
4142
}
4243

@@ -72,6 +73,7 @@ export class Log {
7273
*/
7374
static eventFired(event: string, ...args: any[])
7475
{
76+
return;
7577
console.log(`[EVENT][${PluginInfo.pluginId}]: ${event}`, ...args);
7678
}
7779

0 commit comments

Comments
 (0)