fix: typos in debug log messages (#30742)

This commit is contained in:
ihmcsm 2026-08-13 19:30:19 +10:00 committed by GitHub
parent a939561e70
commit af33a78d18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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] },