From 194e84b074eef94a1640986f4fcbb47822019da9 Mon Sep 17 00:00:00 2001 From: tcely Date: Thu, 6 Feb 2025 22:36:56 -0500 Subject: [PATCH] Differentiate the unknown event logs --- tubesync/sync/hooks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tubesync/sync/hooks.py b/tubesync/sync/hooks.py index 3244a8f5..f39f7e76 100644 --- a/tubesync/sync/hooks.py +++ b/tubesync/sync/hooks.py @@ -30,7 +30,7 @@ class PPHookStatus: def yt_dlp_progress_hook(event): if event['status'] not in ProgressHookStatus.valid: - log.warn(f'[youtube-dl] unknown event: {str(event)}') + log.warn(f'[youtube-dl] unknown progress event: {str(event)}') return None name = key = 'Unknown' @@ -84,7 +84,7 @@ def yt_dlp_progress_hook(event): def yt_dlp_postprocessor_hook(event): if event['status'] not in PPHookStatus.valid: - log.warn(f'[youtube-dl] unknown event: {str(event)}') + log.warn(f'[youtube-dl] unknown postprocessor event: {str(event)}') return None name = key = 'Unknown'