Skip to main content
method Console.timeLog
Console.timeLog(
label?: string,
...data: any[],
): void
Deprecated

For a timer that was previously started by calling time, prints the elapsed time and other data arguments to stdout:

console.time('process');
const value = expensiveProcess1(); // Returns 42
console.timeLog('process', value);
// Prints "process: 365.227ms 42".
doExpensiveProcess2(value);
console.timeEnd('process');

Parameters

optional
label: string = 'default'
<span>...data</span>: any[]

Return Type

void
Back to top