chore: add debug prints for attribute_co_authored_by

This commit is contained in:
Andrew Grigorev (aider) 2025-04-12 17:57:04 +03:00
parent ff8e9850ba
commit d1437b7666
2 changed files with 10 additions and 0 deletions

View file

@ -501,6 +501,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
# Parse again to include any arguments that might have been defined in .env
args = parser.parse_args(argv)
print(f"DEBUG: After final parse, args.attribute_co_authored_by = {args.attribute_co_authored_by}") # DEBUG
if git is None:
args.git = False
@ -891,6 +892,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
repo = None
if args.git:
try:
print(f"DEBUG: Before GitRepo init, args.attribute_co_authored_by = {args.attribute_co_authored_by}") # DEBUG
repo = GitRepo(
io,
fnames,