We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b9d1d commit 8517729Copy full SHA for 8517729
cheesechaser/datapool/base.py
@@ -73,11 +73,10 @@ def _func(resource_id, resource_info):
73
74
pg_downloaded.update()
75
copied = True
76
-
77
if not copied:
78
logging.warning(f'No files found for resource {resource_id!r}.')
79
except ResourceNotFoundError:
80
- logging.error(f'Resource {resource_id!r} not found, skipped.')
+ logging.warning(f'Resource {resource_id!r} not found, skipped.')
81
except Exception as err:
82
logging.error(f'Error occurred when downloading resource {resource_id!r} - {err!r}')
83
finally:
0 commit comments