From c6047e1573afaeacfdd049ebb14957cc1c5d2fe3 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 29 Nov 2023 16:31:29 +0100 Subject: [PATCH] Add missing logger tags --- server/core/lib/job-queue/handlers/shared/move-video.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core/lib/job-queue/handlers/shared/move-video.ts b/server/core/lib/job-queue/handlers/shared/move-video.ts index e056e9657..9aeb55353 100644 --- a/server/core/lib/job-queue/handlers/shared/move-video.ts +++ b/server/core/lib/job-queue/handlers/shared/move-video.ts @@ -38,7 +38,7 @@ export async function moveToJob (options: { } if (video.VideoStreamingPlaylists) { - logger.debug('Moving HLS playlist of %s.', video.uuid) + logger.debug('Moving HLS playlist of %s.', video.uuid, lTags) await moveHLSFiles(video) }