Commit 0396408b authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

Output the full URL in log.

parent a67730dd
...@@ -103,7 +103,6 @@ def download_network_cached(dir_url, cache_url, path, url, logger, ...@@ -103,7 +103,6 @@ def download_network_cached(dir_url, cache_url, path, url, logger,
md5sum = _get_md5_from_url(url) md5sum = _get_md5_from_url(url)
directory_key = get_directory_key(url) directory_key = get_directory_key(url)
url = os.path.basename(url)
logger.debug('Trying to download %s from network cache...' % url) logger.debug('Trying to download %s from network cache...' % url)
...@@ -119,6 +118,7 @@ def download_network_cached(dir_url, cache_url, path, url, logger, ...@@ -119,6 +118,7 @@ def download_network_cached(dir_url, cache_url, path, url, logger,
logger.info('MD5 checksum mismatch downloading %s' % url) logger.info('MD5 checksum mismatch downloading %s' % url)
return False return False
return True return True
logger.info('Cannot download %s from network cache.' % url)
return False return False
@fallback_call @fallback_call
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment