Skip to content

Commit

Permalink
Change logger to not use instance in constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed Aug 3, 2024
1 parent 23ddc52 commit 6ebb31b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class HttpModuleProxy<
HttpModuleProxy.createCount = HttpModuleProxy.createCount + 1
super(params)
if (Math.floor(HttpModuleProxy.createCount / 10) === HttpModuleProxy.createCount / 10) {
this.logger.log(`HttpModuleProxy.createCount: ${HttpModuleProxy.createCount}`)
console.log(`HttpModuleProxy.createCount: ${HttpModuleProxy.createCount}`)
}
}

Expand Down

0 comments on commit 6ebb31b

Please sign in to comment.