We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a813b commit e692e32Copy full SHA for e692e32
1 file changed
src/datasets/builder.py
@@ -507,7 +507,7 @@ def download_and_prepare(
507
with FileLock(lock_path):
508
data_exists = os.path.exists(self._cache_dir)
509
if data_exists and download_mode == GenerateMode.REUSE_DATASET_IF_EXISTS:
510
- logger.warning("Reusing dataset %s (%s)", self.name, self._cache_dir)
+ logger.info("Reusing dataset %s (%s)", self.name, self._cache_dir)
511
# We need to update the info in case some splits were added in the meantime
512
# for example when calling load_dataset from multiple workers.
513
self.info = self._load_info()
0 commit comments