Skip to content

Commit d223d37

Browse files
committed
fixes for logs
1 parent 958479f commit d223d37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pilot/helpers/agents/Developer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def execute_task(self, convo, task_steps, test_command=None, reset_convo=True,
555555
# terminate_named_process(step['kill_process'])
556556
# result = {'success': True}
557557

558-
print('', type='verbose', category=agent_map[task_source])
558+
print(f'Finishing up {step["type"]} step.', type='verbose', category=agent_map[task_source])
559559
logger.info(' step result: %s', result)
560560

561561
if (not result['success']) or (need_to_see_output and result.get("user_input") != "SKIP"):

pilot/helpers/agents/TechLead.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def create_development_plan(self):
3333
existing_summary = apply_project_template(self.project)
3434

3535
# DEVELOPMENT PLANNING
36-
print(color_green_bold("Starting to create the action plan for development...\n"))
36+
print(color_green_bold("Starting to create the action plan for development...\n"), category='agent:tech-lead')
3737
logger.info("Starting to create the action plan for development...")
3838

3939
llm_response = self.convo_development_plan.send_message('development/plan.prompt',

0 commit comments

Comments
 (0)