From a4c74c1d95846f8f4b57bf8f8a6551c582669e77 Mon Sep 17 00:00:00 2001 From: samunohito <46447427+samunohito@users.noreply.github.com> Date: Mon, 2 Jun 2025 08:54:39 +0900 Subject: [PATCH] remove log --- packages/backend/src/core/SearchService.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/backend/src/core/SearchService.ts b/packages/backend/src/core/SearchService.ts index cf44521209..7296a168fc 100644 --- a/packages/backend/src/core/SearchService.ts +++ b/packages/backend/src/core/SearchService.ts @@ -274,7 +274,6 @@ export class SearchService { for (const note of notes) { try { await this.addDocument(note); - this.logger.debug(`-- Indexed note: ${note.id}`); } catch (err) { this.logger.error(`-- Failed to index note: ${note.id}`, err as Error); errorNoteIds.push(note.id);