Skip to content

Commit e692e32

Browse files
Switch some log warning to info
1 parent 46a813b commit e692e32

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/datasets/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ def download_and_prepare(
507507
with FileLock(lock_path):
508508
data_exists = os.path.exists(self._cache_dir)
509509
if data_exists and download_mode == GenerateMode.REUSE_DATASET_IF_EXISTS:
510-
logger.warning("Reusing dataset %s (%s)", self.name, self._cache_dir)
510+
logger.info("Reusing dataset %s (%s)", self.name, self._cache_dir)
511511
# We need to update the info in case some splits were added in the meantime
512512
# for example when calling load_dataset from multiple workers.
513513
self.info = self._load_info()

0 commit comments

Comments
 (0)