Skip to content

Commit

Permalink
update: adjust log level in data.utils.fetch_file_via_datalad
Browse files Browse the repository at this point in the history
  • Loading branch information
synchon committed Jan 10, 2025
1 parent 733110e commit 6950fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion junifer/data/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def fetch_file_via_datalad(dataset: dl.Dataset, file_path: Path) -> Path:
logger.info(f"Successfully fetched file: {got_path.resolve()}")
return got_path
elif status == "notneeded":
logger.info(f"Found existing file: {got_path.resolve()}")
logger.debug(f"Found existing file: {got_path.resolve()}")
return got_path
else:
raise_error(
Expand Down

0 comments on commit 6950fcc

Please sign in to comment.