From 64b62b58811bfe099b3d04c4812a2cf2a4e46268 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Sat, 23 Nov 2024 10:40:51 -0800 Subject: [PATCH] better messaging --- src/ytdl_sub/downloaders/ytdlp.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ytdl_sub/downloaders/ytdlp.py b/src/ytdl_sub/downloaders/ytdlp.py index f1136c1e..31f9ccdb 100644 --- a/src/ytdl_sub/downloaders/ytdlp.py +++ b/src/ytdl_sub/downloaders/ytdlp.py @@ -226,14 +226,14 @@ class YTDLP: "RejectedVideoReached, stopping additional downloads " "(Can be disable by setting `date_range.breaks` to False. " "If this is unexpected, " - "run with --log-level verbose to see the yt-dlp logs on why it stopped." + "run with `--log-level verbose` to see the yt-dlp logs on why it stopped)" ) except ExistingVideoReached: cls.logger.info( "ExistingVideoReached, stopping additional downloads. " - "(Can be disable by setting `ytdl_options.break_on_existing` to False)." - "If this is unexpected, " - "run with --log-level verbose to see the yt-dlp logs on why it stopped." + "(Can be disable by setting `ytdl_options.break_on_existing` to False. This will " + "force yt-dlp to continue scraping all metadata to grab any files you may have " + "missed)" ) except MaxDownloadsReached: cls.logger.info("MaxDownloadsReached, stopping additional downloads.")