diff --git a/lib/internal/console/constructor.js b/lib/internal/console/constructor.js index e3de39f8126b7c..a618457124c877 100644 --- a/lib/internal/console/constructor.js +++ b/lib/internal/console/constructor.js @@ -310,9 +310,9 @@ const consoleMethods = { timeEnd(label = 'default') { // Coerces everything other than Symbol to a string label = `${label}`; - const hasWarned = timeLogImpl(this, 'timeEnd', label); + const found = timeLogImpl(this, 'timeEnd', label); trace(kTraceEnd, kTraceConsoleCategory, `time::${label}`, 0); - if (!hasWarned) { + if (found) { this._times.delete(label); } }, @@ -509,12 +509,12 @@ const consoleMethods = { }, }; -// Returns true if label was not found +// Returns true if label was found function timeLogImpl(self, name, label, data) { const time = self._times.get(label); - if (!time) { + if (time === undefined) { process.emitWarning(`No such label '${label}' for console.${name}()`); - return true; + return false; } const duration = process.hrtime(time); const ms = duration[0] * 1000 + duration[1] / 1e6; @@ -523,7 +523,7 @@ function timeLogImpl(self, name, label, data) { } else { self.log('%s: %sms', label, ms.toFixed(3), ...data); } - return false; + return true; } const keyKey = 'Key';