1
0
Fork 0
mirror of synced 2024-05-01 19:02:36 +12:00

Change logging message to include submission ID

This commit is contained in:
Serene-Arc 2021-05-10 18:58:42 +10:00 committed by Serene
parent db8b1c7547
commit 7e70175e4c

View file

@ -422,8 +422,8 @@ class RedditDownloader:
try:
res.download(self.args.max_wait_time)
except errors.BulkDownloaderException as e:
logger.error(
f'Failed to download resource {res.url} with downloader {downloader_class.__name__}: {e}')
logger.error(f'Failed to download resource {res.url} in submission {submission.id} '
f'with downloader {downloader_class.__name__}: {e}')
return
resource_hash = res.hash.hexdigest()
destination.parent.mkdir(parents=True, exist_ok=True)