Skip to content

Commit

Permalink
Reduce verbosity of download() logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCummins committed Apr 8, 2021
1 parent ab2a245 commit 72aacc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler_gym/util/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _download(url: str, sha256: Optional[str]) -> bytes:
f.write(content)
os.rename(f"{manifest_path}.tmp", str(manifest_path))

logging.info(f"Downloaded {url}")
logging.debug(f"Downloaded {url}")
return content


Expand Down

0 comments on commit 72aacc5

Please sign in to comment.