Skip to content
This repository was archived by the owner on Jul 6, 2024. It is now read-only.

Commit 10945c0

Browse files
authored
Fixing issue with extra debug logs when showDebugLogs == false (#224)
1 parent 5493168 commit 10945c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/module.base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export function log(level: LogLevel, msg: string): void {
201201
else if(level === LogLevel.Error) {
202202
throw new Error(msg)
203203
}
204-
else {
204+
else if(level === LogLevel.INFO){
205205
console.log(msg);
206206
}
207207
}

0 commit comments

Comments
 (0)