From af33a78d180f63190ee28cf71adae2277441b6c8 Mon Sep 17 00:00:00 2001 From: ihmcsm <6415186+ihmcsm@users.noreply.github.com> Date: Thu, 13 Aug 2026 19:30:19 +1000 Subject: [PATCH] fix: typos in debug log messages (#30742) --- server/src/services/library.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/services/library.service.ts b/server/src/services/library.service.ts index 9e5e0cf4d1..ac6112dcd7 100644 --- a/server/src/services/library.service.ts +++ b/server/src/services/library.service.ts @@ -110,7 +110,7 @@ export class LibraryService extends BaseService { const handler = async (event: string, path: string) => { if (matcher(path)) { - this.logger.debug(`File ${event} event received for ${path} in library ${library.id}}`); + this.logger.debug(`File ${event} event received for ${path} in library ${library.id}`); await this.jobRepository.queue({ name: JobName.LibrarySyncFiles, data: { libraryId: library.id, paths: [path] }, @@ -121,7 +121,7 @@ export class LibraryService extends BaseService { }; const deletionHandler = async (path: string) => { - this.logger.debug(`File unlink event received for ${path} in library ${library.id}}`); + this.logger.debug(`File unlink event received for ${path} in library ${library.id}`); await this.jobRepository.queue({ name: JobName.LibraryRemoveAsset, data: { libraryId: library.id, paths: [path] },