Skip to content

Commit e9b9b6e

Browse files
Conchylicultorcopybara-github
authored andcommitted
Downloading from GCS is a info message, rather than warning
PiperOrigin-RevId: 350337855
1 parent 5608706 commit e9b9b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_datasets/core/dataset_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def download_and_prepare(self, *, download_dir=None, download_config=None):
433433
with utils.temporary_assignment(self, "_data_dir", tmp_data_dir):
434434
if (download_config.try_download_gcs and
435435
gcs_utils.is_dataset_on_gcs(self.info.full_name)):
436-
logging.warning(GCS_HOSTED_MSG, self.name)
436+
logging.info(GCS_HOSTED_MSG, self.name)
437437
gcs_utils.download_gcs_dataset(self.info.full_name, self._data_dir)
438438
self.info.read_from_directory(self._data_dir)
439439
else:

0 commit comments

Comments
 (0)