From 5dcfc3324cc966d11d9f3fbbc455e3175a7c3733 Mon Sep 17 00:00:00 2001 From: Jurgis Sakalauskas Date: Wed, 8 Nov 2023 17:08:28 +0200 Subject: [PATCH] add file scan start log --- src/VideoFiles/Update/video-files-update.service.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/VideoFiles/Update/video-files-update.service.ts b/src/VideoFiles/Update/video-files-update.service.ts index 0cc946e..ee0b49f 100644 --- a/src/VideoFiles/Update/video-files-update.service.ts +++ b/src/VideoFiles/Update/video-files-update.service.ts @@ -25,6 +25,9 @@ export class VideoFilesUpdateService { * @param refresh */ async updateFsVideoFiles(refresh = false): Promise { + console.log( + `file scan and update started - ${refresh ? 'full update' : 'only new'}`, + ); const [filesInFs, filesToRelativePaths] = await this.scanner.scanFsForVideoFiles();