mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
use logging module for error messages during downloads
This commit is contained in:
parent
db91cf871c
commit
f94e3706a8
@ -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…
Reference in New Issue
Block a user