Show name of downloader in verbose log

Closes #3703
This commit is contained in:
pukkandan 2022-05-11 06:36:29 +05:30
parent d76fa1f3d4
commit 3a408f9d19
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
7 changed files with 5 additions and 11 deletions

View file

@ -2833,7 +2833,7 @@ class YoutubeDL:
urls = '", "'.join(
(f['url'].split(',')[0] + ',<data>' if f['url'].startswith('data:') else f['url'])
for f in info.get('requested_formats', []) or [info])
self.write_debug('Invoking downloader on "%s"' % urls)
self.write_debug(f'Invoking {fd.FD_NAME} downloader on "{urls}"')
# Note: Ideally info should be a deep-copied so that hooks cannot modify it.
# But it may contain objects that are not deep-copyable