Update app.js

This commit is contained in:
Namhyeon Go 2021-08-10 17:48:47 +09:00
parent ee982c7bc4
commit 69a654680e

2
app.js
View File

@ -97,7 +97,7 @@ var console = {
timeLog: function(label, end) { timeLog: function(label, end) {
label = label || "default"; label = label || "default";
if (label in this._timers) { if (label in this._timers) {
console.debug(label + ": ", ((new Date()).getTime() - this._timers[label].getTime()) + "ms", (end ? " - timer ended" : "")); console.debug(label + ":", ((new Date()).getTime() - this._timers[label].getTime()) + "ms", (end ? " - timer ended" : ""));
} }
}, },
timeEnd: function(label) { timeEnd: function(label) {