Console.timeLog - Node documentation
method Console.timeLog

Usage in Deno

import { type Console } from "node:console";
Console.timeLog(
label?: string,
...data: any[],
): void

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'
...data: any[]

Return Type

void