use logging module for error messages during downloads

pull/79/head
Mike Fährmann 7 years ago
parent db91cf871c
commit f94e3706a8
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -53,6 +53,7 @@ class DownloaderBase():
def download_impl(self, url, pathfmt):
"""Actual implementaion of the download process"""
adj_ext = None
tries = 0
msg = ""
@ -62,7 +63,7 @@ class DownloaderBase():
while True:
self.reset()
if tries:
self.out.error(pathfmt.path, msg, tries, self.retries)
self.log.error("%s (%d/%d)", msg, tries, self.retries)
if tries >= self.retries:
return False
time.sleep(tries)
@ -80,7 +81,7 @@ class DownloaderBase():
except exception.DownloadComplete:
break
except Exception as exc:
self.out.error(pathfmt.path, exc, 0, 0)
self.log.error(exc)
return False
# check response

@ -20,6 +20,7 @@ SKIP = {
# temporary issues
"chronos",
"coreimg",
"imagebam",
}

Loading…
Cancel
Save