commit 730a71f50c224102e5e26481f18a7f2773fd9167 from: Stefan Sperling date: Fri Oct 04 14:33:28 2024 UTC debug commit - 310666ca1b675f5b9ea18bd71bbda18b9f0da97d commit + 730a71f50c224102e5e26481f18a7f2773fd9167 blob - dfc9bd15c4a5c3dba256baa055aadfa2b051ffdf blob + da39b3dd6c7c605c5745234d8a8de9e65d65672e --- swh/loader/git/loader.py +++ swh/loader/git/loader.py @@ -914,6 +914,9 @@ class GitLoader(BaseGitLoader): num_commits_total = len(commits.items()) logger.info("Adding trees and blobs to the graph...") for commit_hash, root_tree_hash in commits.items(): + logger.debug( + f"Processing commit {i + 1}: {hashutil.hash_to_bytehex(commit_hash)}" + ) # Show some debug progress output for very large datasets p = int(i * 100 / num_commits_total) if p != last_p: