feat: Add opt-in analytics and improve output logging method

This commit is contained in:
Paul Gauthier 2024-11-21 06:25:10 -08:00 committed by Paul Gauthier (aider)
parent cbd35b0e87
commit f96cc03587
2 changed files with 3 additions and 2 deletions

View file

@ -2065,5 +2065,5 @@ class Coder:
"Add command output to the chat?", allow_never=True
):
num_lines = len(accumulated_output.strip().splitlines())
self.io.output(f"Added {num_lines} lines of output to the chat")
self.io.tool_output(f"Added {num_lines} lines of output to the chat.")
return accumulated_output