summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-07-06 11:28:51 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-07-06 11:28:51 +0200
commit8d5797b00f2640cfc5d75ea0189e06d85a360639 (patch)
treea86bd1608f83951e667c318d0265258a75234cde
parent7571c02c8ad38919654d3cdd21ec567f57fe2451 (diff)
downloadyoutube-dl-8d5797b00f2640cfc5d75ea0189e06d85a360639.tar.gz
youtube-dl-8d5797b00f2640cfc5d75ea0189e06d85a360639.tar.xz
youtube-dl-8d5797b00f2640cfc5d75ea0189e06d85a360639.zip
[YoutubeDL] Show download URL when -v is set
This will allow us to debug issues like #3204
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index dc0ba986a..3dff723b8 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -993,6 +993,8 @@ class YoutubeDL(object):
                         fd = get_suitable_downloader(info)(self, self.params)
                         for ph in self._progress_hooks:
                             fd.add_progress_hook(ph)
+                        if self.params.get('verbose'):
+                            self.to_stdout('[debug] Invoking downloader on %r' % info.get('url'))
                         return fd.download(name, info)
                     if info_dict.get('requested_formats') is not None:
                         downloaded = []