mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
Fix typo in debug log messages
This commit is contained in:
parent
a939561e70
commit
bdfdbb269b
1 changed files with 2 additions and 2 deletions
|
|
@ -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] },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue