* @type {TimerLog}
(logLabel, traceLabel, args)
| 443 | * @type {TimerLog} |
| 444 | */ |
| 445 | function internalLogTimer(logLabel, traceLabel, args) { |
| 446 | ensureTimerFlagsAreUpdated(); |
| 447 | |
| 448 | if ((timerFlags & kShouldSkipAll) === kShouldSkipAll) { |
| 449 | return; |
| 450 | } |
| 451 | |
| 452 | timeLog( |
| 453 | tracesStores[set], |
| 454 | traceCategory, |
| 455 | 'debuglog.timeLog', |
| 456 | timerFlags, |
| 457 | logImpl, |
| 458 | logLabel, |
| 459 | traceLabel, |
| 460 | args, |
| 461 | ); |
| 462 | } |
| 463 | |
| 464 | function init() { |
| 465 | if (tracesStores[set] === undefined) { |
no test coverage detected