Logs the current value of a timer that was previously started by calling console.time()
to the console.
See Timers in the documentation for details and examples.
console.timeLog(label);
label
If no label parameter included:
default: 1042ms
If an existing label
is included:
If there is no running timer, timeLog()
returns the warning:
console.time("answer time"); alert("Click to continue"); console.timeLog("answer time"); alert("Do a bunch of other stuff..."); console.timeEnd("answer time");
The output from the example above shows the time taken by the user to dismiss the first alert box, followed by the time it took for the user to dismiss the second alert:
Notice that the timer's name is displayed when the timer value is logged using timeLog()
and again when it's stopped.
Specification | Status | Comment |
---|---|---|
Console API The definition of 'console.timeLog()' in that specification. | Living Standard | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | No
|
No | 62 | No | No | No
|
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | No | No | 62 | ? | No | No |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/console/timeLog