[events] Move start point of EventsDashboard to work with early boot
This commit is contained in:
parent
d6de865236
commit
8416691719
|
@ -84,7 +84,9 @@ var PerformanceLogger = {
|
|||
|
||||
logTimespans() {
|
||||
for (var key in timespans) {
|
||||
console.log(key + ': ' + timespans[key].totalTime + 'ms');
|
||||
if (timespans[key].totalTime) {
|
||||
console.log(key + ': ' + timespans[key].totalTime + 'ms');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue