From ba4dab5dc449c9a4b9e1aa544d88289aa338d3bb Mon Sep 17 00:00:00 2001 From: Daniel Bauer Date: Mon, 27 Jan 2025 10:03:19 +0100 Subject: [PATCH] chore: remove logging --- src/SuggestionIndex.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SuggestionIndex.ts b/src/SuggestionIndex.ts index 2ccf401..4125d85 100644 --- a/src/SuggestionIndex.ts +++ b/src/SuggestionIndex.ts @@ -55,9 +55,9 @@ export class SuggestionIndex { this.suggestionsRefs = newSuggestionsRefs; const endTime = performance.now(); - console.log( - `Rebuilt dataview autocomplete index (${this.suggestionsList.length} elements, ${(endTime - startTime).toFixed(2)}ms)`, - ); + // console.log( + // `Rebuilt dataview autocomplete index (${this.suggestionsList.length} elements, ${(endTime - startTime).toFixed(2)}ms)`, + // ); } public updateIndex(type: string, file: TFile, oldPath?: string) {