(logLabel, traceLabel, args)
| 506 | * @type {TimerLog} |
| 507 | */ |
| 508 | const logTimer = (logLabel, traceLabel, args) => { |
| 509 | init(); |
| 510 | |
| 511 | if ((timerFlags & kShouldSkipAll) !== kShouldSkipAll) |
| 512 | internalLogTimer(logLabel, traceLabel, args); |
| 513 | }; |
| 514 | |
| 515 | return { |
| 516 | startTimer, |
nothing calls this directly
no test coverage detected
searching dependent graphs…