We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296bfd2 commit dad5c2cCopy full SHA for dad5c2c
doc/api/console.md
@@ -230,6 +230,11 @@ console.timeEnd('100-elements');
230
// prints 100-elements: 225.438ms
231
```
232
233
+*Note: As of Node.js v6.0.0, `console.timeEnd()` deletes the timer to avoid
234
+leaking it. On older versions, the timer persisted. This allowed
235
+`console.timeEnd()` to be called multiple times for the same label. This
236
+functionality was unintended and is no longer supported.*
237
+
238
### console.trace(message[, ...])
239
240
Prints to `stderr` the string `'Trace :'`, followed by the [`util.format()`][]
0 commit comments