Closed roblav96 closed 6 years ago
Merging #464 into master will not change coverage. The diff coverage is
0%
.
@@ Coverage Diff @@
## master #464 +/- ##
=======================================
Coverage 71.68% 71.68%
=======================================
Files 44 44
Lines 2038 2038
Branches 327 327
=======================================
Hits 1461 1461
Misses 577 577
Impacted Files | Coverage Δ | |
---|---|---|
src/app.ts | 53.84% <0%> (ø) |
:arrow_up: |
src/services/accounts.ts | 60.71% <0%> (ø) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update e00e24d...731a84e. Read the comment docs.
When you pass
log.warn
as a parameter todebugPrint
, it then becomes an anonymous function as a variable and looses it'sthis
context decoupling it away fromConnectorLogger.prototype.warn
. Passinglog.warn.bind(log)
will retain the log'sthis
context.