From e6e378af16c3ff6c5a9764ed07081544324c4b0b Mon Sep 17 00:00:00 2001 From: mgmeyers Date: Fri, 3 May 2024 14:25:56 -0700 Subject: [PATCH] Remove debug logging --- src/KanbanView.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/KanbanView.tsx b/src/KanbanView.tsx index fdff6cf1..b580f16c 100644 --- a/src/KanbanView.tsx +++ b/src/KanbanView.tsx @@ -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); });