aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/schedulers/video-channel-sync-latest-scheduler.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/schedulers/video-channel-sync-latest-scheduler.ts')
-rw-r--r--server/lib/schedulers/video-channel-sync-latest-scheduler.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/lib/schedulers/video-channel-sync-latest-scheduler.ts b/server/lib/schedulers/video-channel-sync-latest-scheduler.ts
index 491ddaa87..a527f68b5 100644
--- a/server/lib/schedulers/video-channel-sync-latest-scheduler.ts
+++ b/server/lib/schedulers/video-channel-sync-latest-scheduler.ts
@@ -16,13 +16,13 @@ export class VideoChannelSyncLatestScheduler extends AbstractScheduler {
16 } 16 }
17 17
18 protected async internalExecute () { 18 protected async internalExecute () {
19 logger.debug('Running %s.%s', this.constructor.name, this.internalExecute.name)
20
21 if (!CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.ENABLED) { 19 if (!CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.ENABLED) {
22 logger.info('Discard channels synchronization as the feature is disabled') 20 logger.debug('Discard channels synchronization as the feature is disabled')
23 return 21 return
24 } 22 }
25 23
24 logger.info('Checking channels to synchronize')
25
26 const channelSyncs = await VideoChannelSyncModel.listSyncs() 26 const channelSyncs = await VideoChannelSyncModel.listSyncs()
27 27
28 for (const sync of channelSyncs) { 28 for (const sync of channelSyncs) {