There was an error while loading. Please reload this page.
1 parent b993d88 commit dd89d6aCopy full SHA for dd89d6a
2 files changed
core/framework/host/agent_host.py
@@ -116,7 +116,7 @@ class AgentHost:
116
117
# Check goal progress
118
progress = await runtime.get_goal_progress()
119
- print(f"Progress: {progress['overall_progress']:.1%}")
+ logger.info(f"Progress: {progress['overall_progress']:.1%}")
120
121
# Stop runtime
122
await runtime.stop()
core/framework/host/event_bus.py
@@ -239,7 +239,7 @@ class EventBus:
239
240
# Subscribe to execution events
241
async def on_execution_complete(event: AgentEvent):
242
- print(f"Execution {event.execution_id} completed")
+ logger.info(f"Execution {event.execution_id} completed")
243
244
bus.subscribe(
245
event_types=[EventType.EXECUTION_COMPLETED],
0 commit comments