Skip to content

Commit

Permalink
[events] Move start point of EventsDashboard to work with early boot
Browse files Browse the repository at this point in the history
  • Loading branch information
jingc committed Jul 29, 2015
1 parent d6de865 commit 8416691
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Libraries/Utilities/PerformanceLogger.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}
},

Expand Down

0 comments on commit 8416691

Please sign in to comment.