From 7ce2eac8fca8ea373a0e61a9a0348a8568b76b16 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 28 Dec 2022 16:11:11 +0100 Subject: [PATCH] Improve sync channel logging --- server/lib/sync-channel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/sync-channel.ts b/server/lib/sync-channel.ts index 10167ee38..3a805a943 100644 --- a/server/lib/sync-channel.ts +++ b/server/lib/sync-channel.ts @@ -76,7 +76,7 @@ export async function synchronizeChannel (options: { await JobQueue.Instance.createJobWithChildren(parent, children) } catch (err) { - logger.error(`Failed to import channel ${channel.name}`, { err }) + logger.error(`Failed to import ${externalChannelUrl} in channel ${channel.name}`, { err }) channelSync.state = VideoChannelSyncState.FAILED await channelSync.save() }