From a4c78e3a3de320af3cca308b2b8a07c8903683fb Mon Sep 17 00:00:00 2001 From: Tzahi12345 Date: Mon, 24 Apr 2023 21:10:51 -0400 Subject: [PATCH] Minor verbose message update --- backend/subscriptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/subscriptions.js b/backend/subscriptions.js index 9a839cb..0e09cf1 100644 --- a/backend/subscriptions.js +++ b/backend/subscriptions.js @@ -365,7 +365,7 @@ async function generateArgsForSubscription(sub, user_uid, redownload = false, de const useYoutubeDLArchive = config_api.getConfigItem('ytdl_use_youtubedl_archive'); if (useYoutubeDLArchive) { const archive_text = await archive_api.generateArchive(sub.type, sub.user_uid, sub.id); - logger.verbose(`Generating temporary archive file for ${sub.id} with ${archive_text.split('\n').length - 1} entries.`) + logger.verbose(`Generating temporary archive file for subscription ${sub.name} with ${archive_text.split('\n').length - 1} entries.`) const archive_path = path.join(appendedBasePath, 'archive.txt'); await fs.writeFile(archive_path, archive_text); downloadConfig.push('--download-archive', archive_path);