Note how many debug logs we have after we load them from DB

FREEBIE
pull/749/head
Scott Nonnenberg 8 years ago
parent 63e41612b7
commit bd3b8ae9f8
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -25,7 +25,9 @@
model: LogEntry, model: LogEntry,
comparator: 'time', comparator: 'time',
initialize: function() { initialize: function() {
this.fetch({remove: false}); this.fetch({remove: false}).then(function() {
console.log('Debug log: after fetch have', this.length, 'entries');
}.bind(this));
}, },
log: function(str) { log: function(str) {
var entry = this.add({time: Date.now(), value: str}); var entry = this.add({time: Date.now(), value: str});

Loading…
Cancel
Save