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,
md5sum = _get_md5_from_url(url)
directory_key = get_directory_key(url)
url = os.path.basename(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,
logger.info('MD5 checksum mismatch downloading %s' % url)
return False
return True
logger.info('Cannot download %s from network cache.' % url)
return False
@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