deno.com

method Console.timeLog

#Console.timeLog(
label?: string,
...data: any[],
): void

Logs the current value of a timer that was previously started

Examples #

#
console.time('process');
// ... some code
console.timeLog('process', 'Checkpoint A');

Parameters #

#label: string
optional

Timer label

#<span>...data</span>: any[]

Return Type #

void