Add debug logging to dump all tags since a given start tag

This commit is contained in:
Paul Gauthier 2024-07-29 11:04:25 -03:00 committed by Paul Gauthier (aider)
parent 83060b5276
commit d1abb85445

View file

@ -79,6 +79,7 @@ def main():
if args.all_since:
tags = get_all_tags_since(args.start_tag)
dump(tags)
for i in range(len(tags) - 1):
start_tag, end_tag = tags[i], tags[i+1]
_, _, total_lines, aider_total, aider_percentage = blame(start_tag, end_tag)