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

Commit

Permalink
Fixing issue with extra debug logs when showDebugLogs == false (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
danitseitlin authored Nov 29, 2022
1 parent a54a989 commit 8b8a771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/module.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function log(level: LogLevel, msg: string): void {
else if(level === LogLevel.Error) {
throw new Error(msg)
}
else {
else if(level === LogLevel.INFO){
console.log(msg);
}
}
Expand Down

0 comments on commit 8b8a771

Please # to comment.