Skip to content

Commit

Permalink
fix: disable EVENT and INFO logging
Browse files Browse the repository at this point in the history
  • Loading branch information
iOSonntag committed Dec 27, 2023
1 parent d0d941b commit 7951a95
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/util/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export class Log {
*/
static log(message: string, ...args: any[])
{
return;
console.log(`[INFO] [${PluginInfo.pluginId}]: ${message}`, ...args);
}

Expand Down Expand Up @@ -72,6 +73,7 @@ export class Log {
*/
static eventFired(event: string, ...args: any[])
{
return;
console.log(`[EVENT][${PluginInfo.pluginId}]: ${event}`, ...args);
}

Expand Down

0 comments on commit 7951a95

Please sign in to comment.