MCPcopy Index your code
hub / github.com/nodejs/node / internalLogTimer

Function internalLogTimer

lib/internal/util/debuglog.js:445–462  ·  view source on GitHub ↗

* @type {TimerLog}

(logLabel, traceLabel, args)

Source from the content-addressed store, hash-verified

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) {

Callers 1

logTimerFunction · 0.85

Calls 2

timeLogFunction · 0.70

Tested by

no test coverage detected