Skip to content

Commit

Permalink
disable trace for download_file used in fetch_files_from_commit
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Apr 6, 2024
1 parent bf13328 commit ce9a555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/tools/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ def fetch_files_from_commit(commit, files=None, path=None, github_account=None,
diff_url = os.path.join(GITHUB_URL, github_account, github_repo, 'commit', commit + '.diff')
diff_fn = os.path.basename(diff_url)
diff_filepath = os.path.join(path, diff_fn)
if download_file(diff_fn, diff_url, diff_filepath, forced=True):
if download_file(diff_fn, diff_url, diff_filepath, forced=True, trace=False):
diff_txt = read_file(diff_filepath)
_log.debug("Diff for commit %s:\n%s", commit, diff_txt)

Expand Down

0 comments on commit ce9a555

Please sign in to comment.