Skip to content

Commit

Permalink
Remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmeyers committed May 3, 2024
1 parent 0b58550 commit e6e378a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/KanbanView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,6 @@ export class KanbanView extends TextFileView implements HoverParent {
concurrency: 10,
});

let firstAdd = -1;

this.previewQueue.on('add', () => {
if (firstAdd < 0) firstAdd = performance.now();
});

this.previewQueue.on('idle', () => {
if (firstAdd > 0) {
console.log('t', performance.now() - firstAdd);
firstAdd = -1;
}
});

this.previewQueue.on('error', (...args) => {
console.error('Error processing Kanban render queue', ...args);
});
Expand Down

0 comments on commit e6e378a

Please sign in to comment.