[events] Move start point of EventsDashboard to work with early boot

This commit is contained in:
Jing Chen 2015-07-29 10:37:32 -07:00
parent d6de865236
commit 8416691719
1 changed files with 3 additions and 1 deletions

View File

@ -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');
}
}
},