Browse Source

utils/downloads.py: Add debug message for retrieval URL

The downloader does not handle network interruptions well (e.g. a
connection can hang indefinitely and the downloader will not terminate).
This message makes it easier to manually download it using a more
advanced downloader like axel, which supports parallel downloading and
download resumption.
Eloston 4 years ago
parent
commit
9a61cbb699
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/downloads.py

+ 1 - 1
utils/downloads.py

@@ -189,7 +189,7 @@ def _download_if_needed(file_path, url, show_progress):
     if file_path.exists():
         get_logger().info('%s already exists. Skipping download.', file_path)
     else:
-        get_logger().info('Downloading %s ...', file_path)
+        get_logger().debug('Download URL %s ...', url)
         reporthook = None
         if show_progress:
             reporthook = _UrlRetrieveReportHook()