Skip to content

Commit 3041e6b

Browse files
authored
Update PerformanceTimer.js
1 parent b93c718 commit 3041e6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/clients/PerformanceTimer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ export default class PerformanceTimer extends EventEmitter {
2828
}
2929

3030
start() {
31-
console.log('Timer started...')
31+
log('Timer started...')
3232
performance.mark(this.startMark)
3333
}
3434

3535
end() {
3636
performance.mark(this.endMark)
3737
performance.measure(`${this.startMark} to ${this.endMark}`, this.startMark, this.endMark)
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)